mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
ci(projects): 初步完成vite.config.js配置
This commit is contained in:
parent
68dae64b9a
commit
ed48c5a817
0
.env.development
Normal file
0
.env.development
Normal file
0
.env.production
Normal file
0
.env.production
Normal file
@ -1,7 +1,37 @@
|
|||||||
import { defineConfig } from 'vite';
|
import { defineConfig, loadEnv, ConfigEnv } from 'vite';
|
||||||
import vue from '@vitejs/plugin-vue';
|
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/
|
// 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()],
|
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 文件
|
||||||
|
},
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user