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

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

webpackConfig.entry = {
	'main-settings': path.join(__dirname, 'src', 'main-settings.js'),
	'main-login-setup': path.join(__dirname, 'src', 'main-login-setup.js'),
}

module.exports = webpackConfig