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

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

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