Files
nextcloud-guests/webpack.js
Joas Schilling 9760e04623 Add talk integration
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-05-27 13:52:19 +02:00

8 lines
265 B
JavaScript

const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')
webpackConfig.entry.settings = path.join(__dirname, 'src', 'settings.js')
webpackConfig.entry.talk = path.join(__dirname, 'src', 'talk.js')
module.exports = webpackConfig