mermaid/webpack.config.prod.babel.js
Matthieu MOREL 42d8bbfce2
babel-eslint => @babel/eslint-parser and remove babel-core and webpack-bundle-analyzer and yarn-upgrade-all config
remove babel-core and webpack-bundle-analyzer and yarn-upgrade-all config
2021-07-29 21:48:46 +02:00

8 lines
186 B
JavaScript

import { jsConfig } from './webpack.config.base';
const minConfig = jsConfig();
minConfig.mode = 'production';
minConfig.output.filename = '[name].min.js';
export default [minConfig];