config
This commit is contained in:
parent
c09c1b4941
commit
f1962421ef
|
@ -1,4 +0,0 @@
|
||||||
NODE_ENV = 'development'
|
|
||||||
|
|
||||||
# Base API
|
|
||||||
VITE_APP_BASE_URL=''
|
|
|
@ -1,3 +0,0 @@
|
||||||
NODE_ENV = 'production'
|
|
||||||
# Base API
|
|
||||||
VITE_APP_BASE_URL=''
|
|
|
@ -3,7 +3,7 @@
|
||||||
"editor.tabSize": 4,
|
"editor.tabSize": 4,
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll.eslint": true
|
"source.fixAll.eslint": "explicit"
|
||||||
},
|
},
|
||||||
"css.validate": false,
|
"css.validate": false,
|
||||||
"less.validate": false,
|
"less.validate": false,
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"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",
|
||||||
|
"release:stage": "vite build --mode staging && 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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,9 +2,12 @@ const config = {
|
||||||
terminal: 1, //终端
|
terminal: 1, //终端
|
||||||
title: '后台管理系统', //网站默认标题
|
title: '后台管理系统', //网站默认标题
|
||||||
version: '1.8.0', //版本号
|
version: '1.8.0', //版本号
|
||||||
|
// baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名
|
||||||
baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名
|
baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名
|
||||||
urlPrefix: 'adminapi', //请求默认前缀
|
urlPrefix: 'adminapi', //请求默认前缀
|
||||||
timeout: 10 * 1000 //请求超时时长
|
timeout: 10 * 1000 //请求超时时长
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
console.log(import.meta,'meta')
|
||||||
export default config
|
export default config
|
||||||
|
|
Loading…
Reference in New Issue