mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
module.exports = {
|
|
chainWebpack: (config) => {
|
|
config.plugin('html')
|
|
.tap((args) => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
args[0].minify = false;
|
|
return args;
|
|
});
|
|
},
|
|
transpileDependencies: [
|
|
'vuetify',
|
|
],
|
|
};
|