Semaphore/web/vue.config.js

20 lines
373 B
JavaScript
Raw Normal View History

2020-10-03 13:39:33 +02:00
module.exports = {
2022-06-29 23:59:48 +02:00
configureWebpack: {
devServer: {
historyApiFallback: true,
},
},
2020-11-24 13:26:02 +01:00
chainWebpack: (config) => {
config.plugin('html')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0].minify = false;
return args;
});
},
2020-10-03 13:39:33 +02:00
transpileDependencies: [
'vuetify',
],
2021-08-30 07:53:48 +02:00
publicPath: './',
2020-10-03 13:39:33 +02:00
};