/ webpack_config / webpack.prod.js
webpack.prod.js
1 'use strict'; 2 const makeConfig = require('./makeConfig'); 3 4 module.exports = makeConfig({ 5 isProduction: true, 6 outputDir: 'prod' 7 });
1 'use strict'; 2 const makeConfig = require('./makeConfig'); 3 4 module.exports = makeConfig({ 5 isProduction: true, 6 outputDir: 'prod' 7 });