explorata/vue.config.js

14 lines
223 B
JavaScript

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