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

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

module.exports = {
	entry: path.join(__dirname, 'src', 'systemtags.js'),
	output: {
		path: path.resolve(__dirname, './js'),
		publicPath: '/js/',
		filename: 'systemtags.js',
		jsonpFunction: 'webpackJsonpSystemtags'
	}
}