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

webpack.js « user_status « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b3372b25c737f915c500b7e4e851bb5e7faf771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const path = require('path')

module.exports = {
	entry: {
		'dashboard': path.join(__dirname, 'src', 'dashboard'),
		'user-status-menu': path.join(__dirname, 'src', 'main-user-status-menu')
	},
	output: {
		path: path.resolve(__dirname, './js'),
		publicPath: '/js/',
		filename: '[name].js?v=[chunkhash]',
		jsonpFunction: 'webpackJsonpUserStatus'
	},
	optimization: {
		splitChunks: {
			automaticNameDelimiter: '-',
		}
	}
}