public.html
EXPLORER
PUBLIC_HTML
.bolt
.vscode
node_modules
production
project-bolt-sbf-gyovr2ij-2ip-EXTRACTED-A...
src
supabase/migrations
20250120174010_turquoise_art.sql
.env
.gitignore
default.php
eslint.config.js
index.html
package-lock.json
package.json
postcss.config.js
project-bolt-sbf-gyovr2ij.zip
tailwind.config.js
tsconfig.app.json
tsconfig.json
tsconfig.node.json
vite.config.ts
package.json
tailwindcss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
1 {
2 "name": "vite-react-typescript-starter",
3 "private": true,
4 "version": "0.0.0",
5 "type": "module",
6 // Debug
7 "scripts": {
8 "dev": "vite",
9 "build": "vite build",
10 "lint": "eslint .",
11 "preview": "vite preview"
12 },
13 "dependencies": {
14 "@supabase/supabase-js": "^2.54.0",
15 "lucide-react": "^0.344.0",
16 "react": "^18.3.1",
17 "react-dom": "^18.3.1"
18 },
19 "devDependencies": {
20 "@eslint/js": "^9.9.1",
21 "@types/react": "^18.3.5",
22 "@types/react-dom": "^18.3.0",
23 "@vitejs/plugin-react": "^4.3.1",
24 "autoprefixer": "^10.4.18",
25 "eslint": "^9.9.1",
26 "eslint-plugin-react-hooks": "^5.1.0-rc.0",
27 "eslint-plugin-react-refresh": "^0.4.11",
28 "globals": "^15.9.0",
29 "postcss": "^8.4.35",
30 "tailwindcss": "^3.4.1",
31 "typescript": "^5.5.3",
32 "typescript-eslint": "^8.3.0",
33 "vite": "^5.4.10"
34 }
35 }
CHAT
npm install vite --save-dev
npm run build
build it to production folder
npm run build -- --outDir production
The project has been successfully built, and the output files are now in the
📁 production
folder. If you need to preview or deploy the build, let me know how you'd like to proceed.
PROBLEMS
OUTPUT
DEBUG CONSOLE
TERMINAL
PORTS
saulius.lazaravicius@mac-C3dPRKYMH public_html % npm install vite --save-dev
added 326 packages, and audited 327 packages in 3s
65 packages are looking for funding
run "npm fund" for details
8 vulnerabilities (2 low, 5 moderate, 1 high)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
saulius.lazaravicius@mac-C3dPRKYMH public_html %