quicint
Version:
Quick initialize HTML5 EJS Boilerplate
11 lines (9 loc) • 368 B
JavaScript
const { merge } = require('webpack-merge')
const common = require('./webpack.common.js')
const TerserPlugin = require('terser-webpack-plugin')
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map',
// plugins: [new BundleAnalyzerPlugin()],
})