2020-08-16 11:24:45 -07:00
|
|
|
const path = require('path');
|
2020-05-04 03:44:12 -07:00
|
|
|
const common = require('./webpack.common');
|
|
|
|
const merge = require('webpack-merge');
|
2019-09-30 13:51:46 -07:00
|
|
|
|
|
|
|
module.exports = merge(common, {
|
2021-06-03 07:13:47 -07:00
|
|
|
// In order for live reload to work we must use "web" as the target not "browserlist"
|
|
|
|
target: 'web',
|
2020-05-04 03:44:12 -07:00
|
|
|
mode: 'development',
|
2020-11-25 23:45:23 -07:00
|
|
|
entry: './scripts/site.js',
|
2020-08-15 03:44:52 -07:00
|
|
|
devtool: 'source-map',
|
2019-09-30 16:58:05 -07:00
|
|
|
module: {
|
|
|
|
rules: [
|
2020-10-17 11:09:56 -07:00
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
enforce: 'pre',
|
|
|
|
use: ['source-map-loader']
|
2020-10-19 12:25:58 -07:00
|
|
|
}
|
2019-09-30 16:58:05 -07:00
|
|
|
]
|
2020-08-15 03:44:52 -07:00
|
|
|
},
|
2020-08-16 11:24:45 -07:00
|
|
|
devServer: {
|
|
|
|
contentBase: path.join(__dirname, 'dist'),
|
|
|
|
compress: true
|
|
|
|
}
|
2019-09-30 13:51:46 -07:00
|
|
|
});
|