jellyfin-web/webpack.dev.js

44 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-09-30 13:51:46 -07:00
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');
2019-09-30 13:51:46 -07:00
module.exports = merge(common, {
mode: "development",
output: {
2019-09-30 16:58:05 -07:00
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
libraryTarget: "amd-require"
},
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
},
{
test: /\.(png|jpg|gif)$/i,
use: ["file-loader"]
}
]
2019-09-30 13:51:46 -07:00
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html'
}),
new ConcatPlugin({
name: 'scripts/apploader.js',
filesToConcat: ['./scripts/apploader.js']
})
],
devServer: {
proxy: {
"!/**/*.html" : "http://localhost:8096",
"!/**/*.css" : "http://localhost:8086",
"!/**/*.js" : "http://localhost:8086"
}
}
2019-09-30 13:51:46 -07:00
});