Files
explorata/vue.config.js
2022-01-09 11:47:18 +01:00

14 lines
223 B
JavaScript

module.exports = {
configureWebpack: {
devServer: {
overlay: {
warnings: true,
errors: true
},
watchOptions: {
ignored: [/node_modules/, /public/, /\.#/],
}
}
}
}