mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
25 lines
470 B
JavaScript
25 lines
470 B
JavaScript
module.exports = {
|
|
configureWebpack: {
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
proxy: {
|
|
'^/api': {
|
|
target: 'http://localhost:3000',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
chainWebpack: (config) => {
|
|
config.plugin('html')
|
|
.tap((args) => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
args[0].minify = false;
|
|
return args;
|
|
});
|
|
},
|
|
transpileDependencies: [
|
|
'vuetify',
|
|
],
|
|
publicPath: './',
|
|
};
|