16 lines
420 B
JavaScript
16 lines
420 B
JavaScript
const { merge } = require('webpack-merge');
|
|
|
|
const myEnv = require('dotenv').config({ path: 'config/app/.env.prod' }).parsed;
|
|
const common = require('./webpack-common');
|
|
|
|
// const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
module.exports = (env, args) => {
|
|
return merge(common(env, args, myEnv), {
|
|
mode: 'production',
|
|
devtool: false,
|
|
plugins: [
|
|
// new BundleAnalyzerPlugin(),
|
|
],
|
|
});
|
|
};
|