276fa4ad8f
These changes were done automatically, by using the `gulp lint --fix` command, in preparation for the next patch.
17 lines
405 B
JavaScript
17 lines
405 B
JavaScript
const webpack = require("webpack"); // eslint-disable-line no-unused-vars
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
context: __dirname,
|
|
entry: {
|
|
main: "./main.js",
|
|
"pdf.worker": "pdfjs-dist/build/pdf.worker.entry",
|
|
},
|
|
mode: "none",
|
|
output: {
|
|
path: path.join(__dirname, "../../build/webpack"),
|
|
publicPath: "../../build/webpack/",
|
|
filename: "[name].bundle.js",
|
|
},
|
|
};
|