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

webpack.js - github.com/nextcloud/activity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce10ef010750482c041de35b1b5bdcd29dfb1823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const path = require('path')

const webpackConfig = require('@nextcloud/webpack-vue-config')

webpackConfig.entry = {
	sidebar: path.join(__dirname, 'src', 'sidebar.js'),
	dashboard: path.join(__dirname, 'src', 'dashboard.js'),
	personalSettings: path.join(__dirname, 'src', 'settings-personal.js'),
	adminSettings: path.join(__dirname, 'src', 'settings-admin.js'),
}

module.exports = webpackConfig