personal-measure/web/vue.config.js

22 lines
431 B
JavaScript

module.exports = {
devServer: {
proxy: {
'/api': { target: 'http://localhost:8081' }
},
host: 'localhost',
disableHostCheck: true
},
// disable Hot Reloading (kills devtools performance and crashes the tab).
// chainWebpack: config => {
// config.plugins.delete("hmr");
// },
pluginOptions: {
webpackBundleAnalyzer: {
analyzerMode: 'static',
openAnalyzer: false
}
}
};