chore: reorganize frontend into app and admin roots
This commit is contained in:
+6
-6
@@ -4,15 +4,15 @@
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --port=3000 --host=0.0.0.0",
|
||||
"dev:web": "vite --port=3000 --host=0.0.0.0",
|
||||
"dev:admin": "vite --config vite.admin.config.ts --port=3001 --host=0.0.0.0",
|
||||
"dev": "vite --config app/vite.config.ts",
|
||||
"dev:web": "vite --config app/vite.config.ts",
|
||||
"dev:admin": "vite --config admin/vite.config.ts",
|
||||
"dev:api": "tsx --tsconfig tsconfig.server.json server/src/index.ts",
|
||||
"dev:worker": "tsx --tsconfig tsconfig.server.json server/src/worker.ts",
|
||||
"build": "vite build",
|
||||
"build:admin": "vite build --config vite.admin.config.ts",
|
||||
"build": "vite build --config app/vite.config.ts",
|
||||
"build:admin": "vite build --config admin/vite.config.ts",
|
||||
"build:api": "tsc -p tsconfig.server.json",
|
||||
"preview": "vite preview",
|
||||
"preview": "vite preview --config app/vite.config.ts",
|
||||
"clean": "rm -rf dist dist-admin dist-server",
|
||||
"lint": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
|
||||
"migrate": "tsx --tsconfig tsconfig.server.json db/scripts/migrate.ts",
|
||||
|
||||
Reference in New Issue
Block a user