mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07:00
37 lines
1003 B
JavaScript
37 lines
1003 B
JavaScript
const path = require("path");
|
|
const common = require("./webpack.common");
|
|
const merge = require("webpack-merge");
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const ConcatPlugin = require('webpack-concat-plugin');
|
|
|
|
module.exports = merge(common, {
|
|
mode: "development",
|
|
output: {
|
|
filename: "bundle.js",
|
|
path: path.resolve(__dirname, "dist"),
|
|
libraryTarget: "amd-require"
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/i,
|
|
use: ["style-loader", "css-loader", "postcss-loader"]
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif)$/i,
|
|
use: ["file-loader"]
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: 'index.html'
|
|
}),
|
|
new ConcatPlugin({
|
|
name: 'scripts/apploader.js',
|
|
filesToConcat: ['./standalone.js', './scripts/apploader.js']
|
|
})
|
|
]
|
|
});
|