summaryrefslogtreecommitdiffstats
path: root/apps/files_versions/webpack.js
blob: 8d02db2d73eebd7a36912d2ef26589633b5fbd66 (plain)
1
2
3
4
5
6
7
8
9
10
11
const path = require('path')

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