jellyfin-web/webpack.common.js

19 lines
383 B
JavaScript
Raw Normal View History

2019-09-30 16:58:05 -07:00
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
module.exports = {
2019-09-30 16:58:05 -07:00
context: path.resolve(__dirname, "src"),
entry: "./bundle.js",
resolve: {
modules: [
2019-09-30 16:58:05 -07:00
path.resolve(__dirname, "node_modules")
]
2019-05-24 21:28:06 -07:00
},
2019-09-30 16:58:05 -07:00
plugins: [
new CopyPlugin([{
from: "**/*",
to: "."
}])
]
};