21 lines
551 B
JavaScript
21 lines
551 B
JavaScript
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
const path = require('path')
|
|
|
|
webpackConfig.entry = {
|
|
...webpackConfig.entry,
|
|
collections: path.join(__dirname, 'src', 'init-collections.js'),
|
|
dashboard: path.join(__dirname, 'src', 'init-dashboard.js'),
|
|
calendar: path.join(__dirname, 'src', 'init-calendar.js'),
|
|
talk: path.join(__dirname, 'src', 'init-talk.js'),
|
|
}
|
|
|
|
webpackConfig.stats = {
|
|
context: path.resolve(__dirname, 'src'),
|
|
assets: true,
|
|
entrypoints: true,
|
|
chunks: true,
|
|
modules: true,
|
|
}
|
|
|
|
module.exports = webpackConfig
|