This commit is contained in:
weipengfei 2023-09-04 14:32:11 +08:00
parent a8151be8f7
commit 6d24062ef8
2 changed files with 1 additions and 3 deletions

View File

@ -1,4 +1,4 @@
NODE_ENV = 'production' # NODE_ENV = 'production'
VITE_APP_BASE_URL = '' VITE_APP_BASE_URL = ''

View File

@ -4,12 +4,10 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"work": "vite --mode work",
"prod": "vite --mode production", "prod": "vite --mode production",
"preview": "vite preview --port 4173", "preview": "vite preview --port 4173",
"build": "vite build && node scripts/release.mjs", "build": "vite build && node scripts/release.mjs",
"build:prod": "vite build --mode production && node scripts/release.mjs", "build:prod": "vite build --mode production && node scripts/release.mjs",
"build:work": "vite build --mode production && node scripts/release.mjs",
"type-check": "vue-tsc --noEmit", "type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
}, },