webpack/examples/worker/webpack.config.js

20 lines
428 B
JavaScript

"use strict";
const path = require("path");
module.exports = {
entry: "./example.js",
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js",
chunkFilename: "[name].js",
publicPath: "/dist/"
},
optimization: {
concatenateModules: true,
usedExports: true,
providedExports: true,
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
}
};