Ignore emacs lockfiles in webpack dev server, as they were causing crashes
This commit is contained in:
parent
d4dbaaf344
commit
d14e0e6fc1
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user