From d14e0e6fc1625624da68cfd661af575774b3a336 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 15 Nov 2021 19:11:00 -0500 Subject: [PATCH] Ignore emacs lockfiles in webpack dev server, as they were causing crashes --- webpack.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index a319737..5d0af3e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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',