Ignore emacs lockfiles in webpack dev server, as they were causing crashes

This commit is contained in:
Adam Goldsmith 2021-11-15 19:11:00 -05:00
parent d4dbaaf344
commit d14e0e6fc1

View File

@ -4,6 +4,12 @@ module.exports = {
mode: 'development',
entry: './src/index.ts',
devServer: {
static: {
directory: path.join(__dirname, 'public'),
watch: {
ignored: /\.#.*/,
}
},
proxy: {
'/calendar': {
target: 'https://calendar.google.com',