
/public is now volatile, any changes to templates should be made in /src and then run either “npm run build” or “npm run builder”
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
const merge = require('webpack-merge')
|
|
// const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
|
|
const common = require('./webpack.common.js')
|
|
|
|
module.exports = merge(common, {
|
|
|
|
})
|