summaryrefslogtreecommitdiffstats
path: root/apps/files/webpack.js
blob: 4007722031ba33c5700ad776fbe9975bfdc55d3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const path = require('path');

module.exports = {
	entry: {
		'sidebar': path.join(__dirname, 'src', 'sidebar.js'),
	},
	output: {
		path: path.resolve(__dirname, './js/dist/'),
		publicPath: '/js/',
		filename: '[name].js',
		chunkFilename: 'files.[id].js'
	}
}