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',
|
mode: 'development',
|
||||||
entry: './src/index.ts',
|
entry: './src/index.ts',
|
||||||
devServer: {
|
devServer: {
|
||||||
|
static: {
|
||||||
|
directory: path.join(__dirname, 'public'),
|
||||||
|
watch: {
|
||||||
|
ignored: /\.#.*/,
|
||||||
|
}
|
||||||
|
},
|
||||||
proxy: {
|
proxy: {
|
||||||
'/calendar': {
|
'/calendar': {
|
||||||
target: 'https://calendar.google.com',
|
target: 'https://calendar.google.com',
|
||||||
|
Loading…
Reference in New Issue
Block a user