mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-25 17:38:45 +00:00
v3.8.1发布,上传前端代码
This commit is contained in:
18
jeecgboot-vue3/electron/env.ts
Normal file
18
jeecgboot-vue3/electron/env.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
// 不能直接使用 process.env,会报错
|
||||
export const $ps = process;
|
||||
|
||||
export const isDev = !!$ps.env.VITE_DEV_SERVER_URL;
|
||||
|
||||
export const $env = getEnv();
|
||||
|
||||
function getEnv() {
|
||||
if (isDev) {
|
||||
return $ps.env;
|
||||
}
|
||||
// 非开发环境,从 JSON 文件中获取环境变量
|
||||
const env = require('./env.json');
|
||||
return {
|
||||
...$ps.env,
|
||||
...env,
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user