nextcloud-notes/webpack.config.js

7 lines
201 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
2021-04-02 20:34:38 +02:00
module.exports = webpackConfig