You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
327 B
16 lines
327 B
|
2 years ago
|
import { defineConfig } from 'vite';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
build: {
|
||
|
|
rollupOptions: {
|
||
|
|
// 在这里设置环境变量
|
||
|
|
output: {
|
||
|
|
// 使用 import.meta.env 进行配置
|
||
|
|
globals: {
|
||
|
|
'process.env.NODE_ENV': JSON.stringify(import.meta.env.MODE),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|