ci(projects): 初步完成vite.config.js配置

This commit is contained in:
Coffee-crocodile 2022-08-05 13:11:01 +08:00
parent 68dae64b9a
commit ed48c5a817
4 changed files with 38 additions and 3 deletions

5
.env Normal file
View File

@ -0,0 +1,5 @@
# 项目本地运行端口号
VITE_PORT = 5200
# 项目根目录
VITE_BASE_URL=/

0
.env.development Normal file
View File

0
.env.production Normal file
View File

View File

@ -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({
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 文件
},
};
});