summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 6841c71bf91308a9c87cbf855f8f9e007b832598 (plain)
1
2
3
4
5
6
7
8
9
const path = require('path')
const webpack = require('webpack')
const webpackConfig = require('@nextcloud/webpack-vue-config')

webpackConfig.entry['files-action'] = path.join(__dirname, 'src', 'files-action.js')
webpackConfig.entry['admin-settings'] = path.join(__dirname, 'src', 'admin-settings.js')
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/))

module.exports = webpackConfig