chore(project): 移除corss-env

This commit is contained in:
chen.home 2023-01-14 19:33:09 +08:00
parent bb54075e91
commit 22c85f2848
6 changed files with 46 additions and 51 deletions

View File

@ -3,21 +3,19 @@ import type { ProxyOptions } from 'vite';
* @description: vite代理字段 * @description: vite代理字段
* @param {*} env - * @param {*} env -
*/ */
export function createViteProxy(isOpenProxy: boolean, envConfig: ServiceEnvConfig) { export function createViteProxy(envConfig: ServiceEnvConfig) {
if (!isOpenProxy) return undefined; const proxy: Record<string, string | ProxyOptions> = {
[envConfig.urlPattern]: {
target: envConfig.url,
changeOrigin: true,
rewrite: (path) => path.replace(new RegExp(`^${envConfig.urlPattern}`), ''),
},
[envConfig.secondUrlPattern]: {
target: envConfig.secondUrl,
changeOrigin: true,
rewrite: (path) => path.replace(new RegExp(`^${envConfig.secondUrlPattern}`), ''),
},
};
const proxy: Record<string, string | ProxyOptions> = { return proxy;
[envConfig.urlPattern]: {
target: envConfig.url,
changeOrigin: true,
rewrite: (path) => path.replace(new RegExp(`^${envConfig.urlPattern}`), ''),
},
[envConfig.secondUrlPattern]: {
target: envConfig.secondUrl,
changeOrigin: true,
rewrite: (path) => path.replace(new RegExp(`^${envConfig.secondUrlPattern}`), ''),
},
};
return proxy;
} }

View File

@ -12,9 +12,9 @@
"admin" "admin"
], ],
"scripts": { "scripts": {
"dev": "cross-env VITE_SERVICE_ENV=dev vite", "dev": "vite",
"dev:test": "cross-env VITE_SERVICE_ENV=test vite", "dev:test": "vite --mode test",
"dev:prod": "cross-env VITE_SERVICE_ENV=prod vite", "dev:prod": "vite --mode production",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"preview": "vite preview", "preview": "vite preview",
"lint": "eslint . --fix", "lint": "eslint . --fix",
@ -63,7 +63,6 @@
"@vitejs/plugin-vue-jsx": "^3.0.0", "@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-typescript": "^11.0.2", "@vue/eslint-config-typescript": "^11.0.2",
"commitizen": "^4.2.6", "commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0", "cz-customizable": "^7.0.0",
"eslint": "^8.31.0", "eslint": "^8.31.0",

View File

@ -3,34 +3,32 @@ type ServiceEnv = Record<ServiceEnvType, ServiceEnvConfig>;
/** 不同请求服务的环境配置 */ /** 不同请求服务的环境配置 */
const serviceEnv: ServiceEnv = { const serviceEnv: ServiceEnv = {
dev: { development: {
url: 'https://mock.mengxuegu.com/mock/61e4df7c17249f68847fc191/api', url: 'https://mock.mengxuegu.com/mock/61e4df7c17249f68847fc191/api',
urlPattern: '/url-pattern', urlPattern: '/url-pattern',
secondUrl: 'http://localhost:8081', secondUrl: 'http://localhost:8081',
secondUrlPattern: '/second-url-pattern', secondUrlPattern: '/second-url-pattern',
}, },
test: { test: {
url: 'http://localhost:8080', url: 'http://localhost:8080',
urlPattern: '/url-pattern', urlPattern: '/url-pattern',
secondUrl: 'http://localhost:8081', secondUrl: 'http://localhost:8081',
secondUrlPattern: '/second-url-pattern', secondUrlPattern: '/second-url-pattern',
}, },
prod: { production: {
url: 'http://localhost:8080', url: 'http://localhost:8080',
urlPattern: '/url-pattern', urlPattern: '/url-pattern',
secondUrl: 'http://localhost:8081', secondUrl: 'http://localhost:8081',
secondUrlPattern: '/second-url-pattern', secondUrlPattern: '/second-url-pattern',
}, },
}; };
/** /**
* *
* @param env * @param env
*/ */
export function getServiceEnvConfig(env: ImportMetaEnv) { export function getServiceEnvConfig(mode: ServiceEnvType = 'development') {
const { VITE_SERVICE_ENV = 'dev' } = env; const config = serviceEnv[mode];
const config = serviceEnv[VITE_SERVICE_ENV]; return config;
return config;
} }

View File

@ -1,7 +1,7 @@
import { getServiceEnvConfig } from '@/config'; import { getServiceEnvConfig } from '@/config';
import { createRequest } from './request'; import { createRequest } from './request';
const { url, urlPattern } = getServiceEnvConfig(import.meta.env); const { url, urlPattern } = getServiceEnvConfig(import.meta.env.MODE);
const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y'; const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y';

View File

@ -1,10 +1,10 @@
/** /**
* *
* - dev: 后台开发环境 * - development: 后台开发环境
* - test: 后台测试环境 * - test: 后台测试环境
* - prod: 后台生产环境 * - production: 后台生产环境
*/ */
type ServiceEnvType = 'dev' | 'test' | 'prod'; type ServiceEnvType = 'development' | 'test' | 'production';
/** 后台服务的环境配置 */ /** 后台服务的环境配置 */
interface ServiceEnvConfig { interface ServiceEnvConfig {
@ -44,7 +44,7 @@ interface ImportMetaEnv {
readonly VITE_STORAGE_ENCRYPT_SECRET: string; readonly VITE_STORAGE_ENCRYPT_SECRET: string;
/** 后端服务的环境类型 */ /** 后端服务的环境类型 */
readonly VITE_SERVICE_ENV?: ServiceEnvType; readonly MODE?: ServiceEnvType;
} }
interface ImportMeta { interface ImportMeta {

View File

@ -14,9 +14,9 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
// 根据当前工作目录中的 `mode` 加载 .env 文件 // 根据当前工作目录中的 `mode` 加载 .env 文件
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。 // 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv; const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv;
const isOpenProxy = env.VITE_HTTP_PROXY === 'Y'; const isOpenProxy = env.VITE_HTTP_PROXY === 'Y';
const envConfig = getServiceEnvConfig(env);
const envConfig = getServiceEnvConfig(mode as ServiceEnvType);
return { return {
base: env.VITE_BASE_URL, base: env.VITE_BASE_URL,
@ -31,7 +31,7 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
host: '0.0.0.0', host: '0.0.0.0',
port: 3000, port: 3000,
open: true, open: true,
proxy: createViteProxy(isOpenProxy, envConfig), proxy: isOpenProxy ? createViteProxy(envConfig) : undefined,
}, },
preview: { preview: {
port: 5211, port: 5211,