mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
42d8bbfce2
remove babel-core and webpack-bundle-analyzer and yarn-upgrade-all config
8 lines
186 B
JavaScript
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];
|