mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
chore(projects): 增加构建配置和环境条件代理
This commit is contained in:
parent
ed48c5a817
commit
15beb4b418
3
.env
3
.env
@ -1,5 +1,2 @@
|
|||||||
# 项目本地运行端口号
|
|
||||||
VITE_PORT = 5200
|
|
||||||
|
|
||||||
# 项目根目录
|
# 项目根目录
|
||||||
VITE_BASE_URL=/
|
VITE_BASE_URL=/
|
@ -0,0 +1 @@
|
|||||||
|
VITE_HTTP_PROXY=Y
|
1
build/config/index.ts
Normal file
1
build/config/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './proxy';
|
34
build/config/proxy.ts
Normal file
34
build/config/proxy.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/** 不同请求服务的环境配置 */
|
||||||
|
const serviceEnv = {
|
||||||
|
dev: {
|
||||||
|
'/api': {
|
||||||
|
target: 'http://localhost:8080',
|
||||||
|
changeOrigin: true,
|
||||||
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
'/api': {
|
||||||
|
target: 'http://localhost:8080',
|
||||||
|
changeOrigin: true,
|
||||||
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
prod: {
|
||||||
|
'/api': {
|
||||||
|
target: 'http://localhost:8080',
|
||||||
|
changeOrigin: true,
|
||||||
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export function createViteProxy(env) {
|
||||||
|
//判断是否需要开启代理
|
||||||
|
const isOpenProxy = env.VITE_HTTP_PROXY === 'Y';
|
||||||
|
if (!isOpenProxy) return undefined;
|
||||||
|
|
||||||
|
// 返回对应代理
|
||||||
|
const { VITE_SERVICE_ENV = 'dev' } = env;
|
||||||
|
return serviceEnv[VITE_SERVICE_ENV];
|
||||||
|
}
|
1
build/index.ts
Normal file
1
build/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './config';
|
0
build/plugins/index.ts
Normal file
0
build/plugins/index.ts
Normal file
0
build/utils/index.ts
Normal file
0
build/utils/index.ts
Normal file
@ -3,7 +3,9 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "cross-env VITE_SERVICE_ENV=dev vite",
|
||||||
|
"dev:test": "cross-env VITE_SERVICE_ENV=test vite",
|
||||||
|
"dev:prod": "cross-env VITE_SERVICE_ENV=prod vite",
|
||||||
"build": "vue-tsc --noEmit && vite build",
|
"build": "vue-tsc --noEmit && vite build",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
|
"prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
|
||||||
@ -33,6 +35,7 @@
|
|||||||
"@vue/eslint-config-prettier": "^7.0.0",
|
"@vue/eslint-config-prettier": "^7.0.0",
|
||||||
"@vue/eslint-config-typescript": "^11.0.0",
|
"@vue/eslint-config-typescript": "^11.0.0",
|
||||||
"commitizen": "^4.2.5",
|
"commitizen": "^4.2.5",
|
||||||
|
"cross-env": "^7.0.3",
|
||||||
"cz-conventional-changelog": "^3.3.0",
|
"cz-conventional-changelog": "^3.3.0",
|
||||||
"cz-customizable": "^6.9.1",
|
"cz-customizable": "^6.9.1",
|
||||||
"eslint": "^8.21.0",
|
"eslint": "^8.21.0",
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { defineConfig, loadEnv, ConfigEnv } from 'vite';
|
import { defineConfig, loadEnv, ConfigEnv } from 'vite';
|
||||||
|
import { createViteProxy } from './build';
|
||||||
import vue from '@vitejs/plugin-vue';
|
import vue from '@vitejs/plugin-vue';
|
||||||
import { resolve } from 'path';
|
import { resolve } from 'path';
|
||||||
|
|
||||||
@ -9,6 +10,7 @@ const srcPath: string = `${rootPath}/src`;
|
|||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig(({ command, mode }: ConfigEnv) => {
|
export default defineConfig(({ command, mode }: ConfigEnv) => {
|
||||||
// 在开发环境下 command 的值为 serve 生产环境下为 build
|
// 在开发环境下 command 的值为 serve 生产环境下为 build
|
||||||
|
|
||||||
// 根据当前工作目录中的 `mode` 加载 .env 文件
|
// 根据当前工作目录中的 `mode` 加载 .env 文件
|
||||||
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
|
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
|
||||||
const env = loadEnv(mode, process.cwd(), '');
|
const env = loadEnv(mode, process.cwd(), '');
|
||||||
@ -23,8 +25,9 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
|
|||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
host: '0.0.0.0',
|
host: '0.0.0.0',
|
||||||
port: Number(env.VITE_PORT),
|
port: 5200,
|
||||||
open: true,
|
open: false,
|
||||||
|
proxy: createViteProxy(env),
|
||||||
},
|
},
|
||||||
preview: {
|
preview: {
|
||||||
port: 5211,
|
port: 5211,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user