How to add webpack watchOptions to quasar.config
-
Please help, how do I add webpack watchOptions to quasar build. Am saving multiple files at the same time and the file watcher keep starting immediately. I would like to add a delay before quasar start building. Thanks for your support.
module.exports = { //... watchOptions: { aggregateTimeout: 600 } };
-
@Emman said in How to add webpack watchOptions to quasar.config:
watchOptions: {
aggregateTimeout: 600
}how about this?
devServer: { watchOptions: { aggregateTimeout: 600 ] } }