adjusted build configuration and got it working with libraries like react

This commit is contained in:
Ben Zuill-Smith
2020-11-14 01:05:45 -08:00
parent 78657c8d6b
commit 8e4e91ecbb
5 changed files with 22 additions and 6 deletions

7
webpack.dev.js Normal file
View File

@ -0,0 +1,7 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map'
});