summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/webpack.js
blob: fbf378933ba12c976a05d410f22d5c58326d081b (plain)
1
2
3
4
5
6
7
8
9
10
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'
	}
}