mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
import webpack from 'webpack';
|
|
|
|
const prefixRE = /^FES_APP_/;
|
|
|
|
const ENV_SHOULD_PASS = ['NODE_ENV', 'HMR', 'SOCKET_SERVER', 'ERROR_OVERLAY'];
|
|
|
|
function resolveDefine(opts = {}) {
|
|
const env = {};
|
|
Object.keys(process.env).forEach((key) => {
|
|
if (prefixRE.test(key) || ENV_SHOULD_PASS.includes(key)) {
|
|
env[key] = process.env[key];
|
|
}
|
|
});
|
|
|
|
for (const key in env) {
|
|
if (Object.prototype.hasOwnProperty.call(env, key)) {
|
|
env[key] = JSON.stringify(env[key]);
|
|
}
|
|
}
|
|
|
|
const define = {
|
|
__VUE_OPTIONS_API__: true,
|
|
__VUE_PROD_DEVTOOLS__: false,
|
|
...opts.define
|
|
};
|
|
|
|
for (const key in define) {
|
|
if (Object.prototype.hasOwnProperty.call(define, key)) {
|
|
define[key] = JSON.stringify(define[key]);
|
|
}
|
|
}
|
|
|
|
return {
|
|
'process.env': env,
|
|
...define
|
|
};
|
|
}
|
|
|
|
export default function createDefineWebpackConfig({
|
|
config,
|
|
webpackConfig
|
|
}) {
|
|
webpackConfig.plugin('define')
|
|
.use(webpack.DefinePlugin, [
|
|
resolveDefine({ define: config.define })
|
|
]);
|
|
}
|