summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 3b2711d59363d1b082a7625bc6507459f263d4d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
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