webpack/examples/web-worker/webpack.config.js

16 lines
249 B
JavaScript

var webpack = require("../../");
module.exports = {
plugins: [
new webpack.LoaderOptionsPlugin({
options: {
worker: {
output: {
filename: "hash.worker.js",
chunkFilename: "[id].hash.worker.js"
}
}
}
})
]
};