You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webpack.prod.js 169B

1234567
  1. const merge = require('webpack-merge')
  2. const common = require('./webpack.common.js')
  3. module.exports = merge(common, {
  4. mode: 'production',
  5. devtool: '#source-map'
  6. })