Skip to content

Commit

Permalink
exclude node modules from watch
Browse files Browse the repository at this point in the history
  • Loading branch information
royalfig committed Mar 14, 2023
1 parent e7083cb commit 9eb4ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default defineConfig({
process.env.BUILD !== "production" && livereload({
watch: resolve('.'),
extraExts: ['hbs'],
exclusions: [resolve('src')]
exclusions: [resolve('src'), resolve('node_modules')]
}),
]
})

0 comments on commit 9eb4ddc

Please sign in to comment.