seedling/source/ui/scripts/webpack-prod.js

17 lines
420 B
JavaScript
Raw Normal View History

const { merge } = require('webpack-merge');
2023-12-22 17:48:27 +00:00
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(),
],
});
};