UNPKG

154 BJavaScriptView Raw
1const merge = require('webpack-merge');
2const common = require('./webpack.common.js');
3
4module.exports = merge(common, {
5 mode: "production"
6});