diff --git a/.eslintignore b/.eslintignore index a5a8c50..067a33a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -11,5 +11,4 @@ lib /docs .vscode .local -!.env-config.ts components.d.ts diff --git a/.env-config.ts b/src/config/env.ts similarity index 100% rename from .env-config.ts rename to src/config/env.ts diff --git a/src/config/index.ts b/src/config/index.ts index cadd662..7e08f9b 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -1,2 +1,3 @@ export * from './sdk'; export * from './service'; +export * from './env'; diff --git a/src/service/http/index.ts b/src/service/http/index.ts index a50fafb..5876b84 100644 --- a/src/service/http/index.ts +++ b/src/service/http/index.ts @@ -1,4 +1,4 @@ -import { getServiceEnvConfig } from '~/.env-config'; +import { getServiceEnvConfig } from '@/config'; import { createRequest } from './request'; const { url, urlPattern } = getServiceEnvConfig(import.meta.env); diff --git a/vite.config.ts b/vite.config.ts index 17aba4a..580d1f3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,7 @@ import { defineConfig, loadEnv, ConfigEnv } from 'vite'; import { createViteProxy, setVitePlugins } from './build'; import { resolve } from 'path'; -import { getServiceEnvConfig } from './.env-config'; +import { getServiceEnvConfig } from './src/config'; // 当前执行node命令时文件夹的地址(工作目录) const rootPath: string = resolve(process.cwd()); @@ -9,39 +9,39 @@ const srcPath = `${rootPath}/src`; // https://vitejs.dev/config/ export default defineConfig(({ command, mode }: ConfigEnv) => { - // 在开发环境下 command 的值为 serve 生产环境下为 build + // 在开发环境下 command 的值为 serve 生产环境下为 build - // 根据当前工作目录中的 `mode` 加载 .env 文件 - // 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。 - const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv; + // 根据当前工作目录中的 `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 isOpenProxy = env.VITE_HTTP_PROXY === 'Y'; + const envConfig = getServiceEnvConfig(env); - return { - base: env.VITE_BASE_URL, - plugins: setVitePlugins(env), - resolve: { - alias: { - '~': rootPath, - '@': srcPath, - }, - }, - server: { - host: '0.0.0.0', - port: 3000, - open: true, - proxy: createViteProxy(isOpenProxy, envConfig), - }, - preview: { - port: 5211, - }, - build: { - reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告 - sourcemap: false, // 构建后是否生成 source map 文件 - }, - optimizeDeps: { - include: ['echarts', 'md-editor-v3', '@wangeditor/editor', '@wangeditor/editor-for-vue'], - }, - }; + return { + base: env.VITE_BASE_URL, + plugins: setVitePlugins(env), + resolve: { + alias: { + '~': rootPath, + '@': srcPath, + }, + }, + server: { + host: '0.0.0.0', + port: 3000, + open: true, + proxy: createViteProxy(isOpenProxy, envConfig), + }, + preview: { + port: 5211, + }, + build: { + reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告 + sourcemap: false, // 构建后是否生成 source map 文件 + }, + optimizeDeps: { + include: ['echarts', 'md-editor-v3', '@wangeditor/editor', '@wangeditor/editor-for-vue'], + }, + }; });