mirror of https://github.com/webpack/webpack.git
19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
"use strict";
|
|
|
|
const webpack = require("../../../../");
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
optimization: {
|
|
moduleIds: "named"
|
|
},
|
|
plugins: [
|
|
new webpack.DllReferencePlugin({
|
|
manifest: require("../../../js/config/dll-plugin-entry/manifest0.json"),
|
|
name: "../0-create-dll/dll.js",
|
|
scope: "dll",
|
|
sourceType: "commonjs2"
|
|
})
|
|
]
|
|
};
|