mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
Ignore vi .swp files when webpack dev reloads page
The webpack dev server watches assets and reloads the page when files change on disk. I'm adding vi's temporary files to the ignore list.
This commit is contained in:
@@ -79,7 +79,9 @@ development:
|
||||
headers:
|
||||
'Access-Control-Allow-Origin': '*'
|
||||
watch_options:
|
||||
ignored: '**/node_modules/**'
|
||||
ignored:
|
||||
- '**/node_modules/**'
|
||||
- '**/*.swp'
|
||||
|
||||
production: &production
|
||||
<<: *default
|
||||
|
||||
Reference in New Issue
Block a user