Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.prod.js - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7b0cf0965183af6fe7f7c9c73213b10c7450e40 (plain)
1
2
3
4
5
6
7
const merge = require('webpack-merge')
const common = require('./webpack.common.js')

module.exports = merge(common, {
  mode: 'production',
  devtool: '#source-map'
})