Webpack build for dist (#2812)

Co-authored-by: Christian Oliff <christianoliff@pm.me>
This commit is contained in:
Rob Larsen
2023-03-22 15:00:56 -04:00
committed by GitHub
parent 48f92c41cd
commit 2154114f92
14 changed files with 192 additions and 41 deletions

16
dist/webpack.config.dev.js vendored Normal file
View File

@@ -0,0 +1,16 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map',
devServer: {
liveReload: true,
hot: true,
open: true,
static: ['./'],
},
});