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

webpack.production.js - github.com/matsuyoshi30/harbor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a3b0cba7bcc019bd1cb3bc25b83b2b4840b76cd (plain)
1
2
3
4
5
6
const { merge } = require('webpack-merge')
const common = require('./webpack.common.js')

module.exports = merge(common, {
  mode: 'production',
})