From ed48c5a8179dd7394a785e7fd4661ede0692694b Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Fri, 5 Aug 2022 13:11:01 +0800 Subject: [PATCH] =?UTF-8?q?ci(projects):=20=E5=88=9D=E6=AD=A5=E5=AE=8C?= =?UTF-8?q?=E6=88=90vite.config.js=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 5 +++++ .env.development | 0 .env.production | 0 vite.config.ts | 36 +++++++++++++++++++++++++++++++++--- 4 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 .env create mode 100644 .env.development create mode 100644 .env.production diff --git a/.env b/.env new file mode 100644 index 0000000..f1f59af --- /dev/null +++ b/.env @@ -0,0 +1,5 @@ +# 项目本地运行端口号 +VITE_PORT = 5200 + +# 项目根目录 +VITE_BASE_URL=/ \ No newline at end of file diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..e69de29 diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..e69de29 diff --git a/vite.config.ts b/vite.config.ts index 6405595..5a5249c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,37 @@ -import { defineConfig } from 'vite'; +import { defineConfig, loadEnv, ConfigEnv } from 'vite'; import vue from '@vitejs/plugin-vue'; +import { resolve } from 'path'; + +// 当前执行node命令时文件夹的地址(工作目录) +const rootPath: string = resolve(process.cwd()); +const srcPath: string = `${rootPath}/src`; // https://vitejs.dev/config/ -export default defineConfig({ - plugins: [vue()], +export default defineConfig(({ command, mode }: ConfigEnv) => { + // 在开发环境下 command 的值为 serve 生产环境下为 build + // 根据当前工作目录中的 `mode` 加载 .env 文件 + // 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。 + const env = loadEnv(mode, process.cwd(), ''); + return { + base: env.VITE_BASE_URL, + plugins: [vue()], + resolve: { + alias: { + '~': rootPath, + '@': srcPath, + }, + }, + server: { + host: '0.0.0.0', + port: Number(env.VITE_PORT), + open: true, + }, + preview: { + port: 5211, + }, + build: { + reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告 + sourcemap: false, // 构建后是否生成 source map 文件 + }, + }; });