nextcloud-notes/webpack.config.js

17 lines
324 B
JavaScript
Raw Normal View History

2020-09-20 14:45:49 +02:00
const webpackConfig = require('@nextcloud/webpack-vue-config')
const path = require('path')
2021-04-02 20:34:38 +02:00
webpackConfig.entry.dashboard = path.join(__dirname, 'src', 'dashboard.js')
2020-09-20 14:45:49 +02:00
webpackConfig.optimization = {
splitChunks: {
cacheGroups: {
defaultVendors: {
name: 'commons',
}
},
},
}
2021-04-02 20:34:38 +02:00
module.exports = webpackConfig