/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/dll-user/webpack.config.js
22 строки
519 B
Alexander Akait
refactor: examples (#20085)
04 ноя 2025, 18:22
Не верифицирован
04 ноя 2025, 18:22
196e19e
Код
Авторство
О чём код?
"use strict"; const path = require("path"); const webpack = require("../../"); /** @type {import("webpack").Configuration} */ const config = { // mode: "development" || "production", plugins: [ new webpack.DllReferencePlugin({ context: path.join(__dirname, "..", "dll"), manifest: require("../dll/dist/alpha-manifest.json") }), new webpack.DllReferencePlugin({ scope: "beta", manifest: require("../dll/dist/beta-manifest.json"), extensions: [".js", ".jsx"] }) ] }; module.exports = config;