d7b39fe696
*Please note:* While following the steps in the README still works with this patch, in the sense that the example runs and successfully renders a PDF document, I unfortunately cannot tell if it illustrates Webpack best practices.
19 lines
445 B
JavaScript
19 lines
445 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
|
|
const webpack = require("webpack"); // eslint-disable-line no-unused-vars
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
context: __dirname,
|
|
entry: {
|
|
main: "./main.mjs",
|
|
"pdf.worker": "pdfjs-dist/build/pdf.worker.mjs",
|
|
},
|
|
mode: "none",
|
|
output: {
|
|
path: path.join(__dirname, "../../build/webpack"),
|
|
publicPath: "../../build/webpack/",
|
|
filename: "[name].bundle.js",
|
|
},
|
|
};
|