mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-01-11 13:48:58 +00:00
9f24a793aa
* Resolved conflicts * fix(copyref): Copy Swarm Reference issue This is a fix for the Copy Swarm Reference feature. Due to the requirement for a NPM module @nextcloud/files, the JS feature has been moved to src/ and added to the Webpack build list. As such, `npm run build` is required to build the relevant JS files and preview this fix. --------- Co-authored-by: JoaoSRaposo <joaosraposo@gmail.com>
6 lines
210 B
JavaScript
6 lines
210 B
JavaScript
const path = require('path');
|
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
|
|
webpackConfig.entry['fileactions'] = path.join(__dirname, 'src', 'fileactions.js');
|
|
|
|
module.exports = webpackConfig
|