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

webpack.js - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 901e5aa483568d968d16ccc9540515661f7a92e8 (plain)
1
2
3
4
5
6
7
8
9
const path = require('path')
const webpackConfig = require('@nextcloud/webpack-vue-config')

webpackConfig.entry = {
	settings: path.join(__dirname, 'src', 'settings'),
	form: path.join(__dirname, 'src', 'form'),
}

module.exports = webpackConfig