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代理字段
* @param {*} env -
*/
export function createViteProxy(isOpenProxy: boolean, envConfig: ServiceEnvConfig) {
if (!isOpenProxy) return undefined;
export function createViteProxy(envConfig: ServiceEnvConfig) {
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> = {
[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;
return proxy;
}

View File

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

View File

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

View File

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

View File

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