jellyfin-web/webpack.common.js

20 lines
445 B
JavaScript
Raw Normal View History

2020-05-04 03:44:12 -07:00
const path = require('path');
2020-08-15 03:44:52 -07:00
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2020-05-29 14:32:45 -07:00
module.exports = {
2020-05-04 03:44:12 -07:00
context: path.resolve(__dirname, 'src'),
2020-08-15 03:44:52 -07:00
target: 'web',
resolve: {
modules: [
2020-05-04 03:44:12 -07:00
path.resolve(__dirname, 'node_modules')
]
2019-05-24 21:28:06 -07:00
},
2019-09-30 16:58:05 -07:00
plugins: [
2020-08-15 03:44:52 -07:00
(new CleanWebpackPlugin())
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}
};