mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
const path = require("path");
|
|
const CopyPlugin = require("copy-webpack-plugin");
|
|
|
|
module.exports = {
|
|
context: path.resolve(__dirname, "src"),
|
|
entry: "./bundle.js",
|
|
resolve: {
|
|
modules: [
|
|
path.resolve(__dirname, "node_modules")
|
|
]
|
|
},
|
|
plugins: [
|
|
new CopyPlugin([{
|
|
from: "**/*",
|
|
to: "."
|
|
}])
|
|
]
|
|
};
|