nextcloud-swarm-plugin/webpack.config.js
retrevor bf8b47628c
feat(#747): remove new file menu options (#85)
- add: remove/restore menu options according to navigation to swarm storage

Co-authored-by: Take one <rontrevor@hotmail.com>
2024-11-20 07:49:51 +00:00

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