ObservationDatabase/frontend/vue.config.js

13 lines
237 B
JavaScript
Raw Permalink Normal View History

2018-09-15 12:23:21 +01:00
// vue.config.js
module.exports = {
2018-10-09 14:26:12 +01:00
outputDir: 'target/dist',
configureWebpack:{
optimization: {
splitChunks: {
minSize: 10000,
maxSize: 250000
}
}
}
};