explorata/vue.config.js

14 lines
223 B
JavaScript
Raw Normal View History

2022-01-08 13:12:15 +01:00
module.exports = {
configureWebpack: {
devServer: {
overlay: {
warnings: true,
errors: true
},
2022-01-08 13:12:15 +01:00
watchOptions: {
ignored: [/node_modules/, /public/, /\.#/],
}
}
}
}