Commit 4b4bd0b2 authored by 前端-许佳敏's avatar 前端-许佳敏

fix: 优化构建

parent 7beefd79
......@@ -12,10 +12,16 @@ const isProduction = process.env.NODE_ENV === 'production' ? true : false;
// 构建时带上的环境变量
const PRO_ENV = process.env.PRO_ENV
if (!PRO_ENV) {
throw `请传入PRO_ENV`
if (PRO_ENV) {
const envs = envValue[PRO_ENV]
if (envs) {
Object.keys(envs).forEach(key => {
process.env[key] = envs[key]
})
}
} else {
console.warn('未传入PRO_ENV, 如果是 yarn的时候出现 可以忽略')
}
setEnv(getEnv(envValue))
const config: any = {
// 如需写入环境变量 需在config中先写入
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment