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

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

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