mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-01-26 20:59:58 +00:00
6 lines
293 B
JavaScript
6 lines
293 B
JavaScript
const path = require('path');
|
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
|
|
webpackConfig.entry['fileactions'] = path.join(__dirname, 'src', 'fileactions.js');
|
|
webpackConfig.entry['newfilemenu'] = path.join(__dirname, 'src', 'newfilemenu.js');
|
|
module.exports = webpackConfig
|