Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.config.js - github.com/nextcloud/password_policy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19aa4c6d63e99930e5f593573185080f04e284c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const { merge } = require('webpack-merge')
const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')

const config = {
	entry: {
		settings: path.resolve(path.join('src', 'settings.js'))
	},
}

const mergedConfig = merge(config, webpackConfig)
delete mergedConfig.entry.main

module.exports = mergedConfig