webpack/test/configCases/dll-plugin-entry/0-create-dll/webpack.config.js

21 lines
401 B
JavaScript

var path = require("path");
var webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
entry: ["."],
output: {
filename: "dll.js",
chunkFilename: "[id].dll.js",
libraryTarget: "commonjs2"
},
plugins: [
new webpack.DllPlugin({
path: path.resolve(
__dirname,
"../../../js/config/dll-plugin-entry/manifest0.json"
)
})
]
};