/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/sharing/share-plugin/webpack.config.js
24 строки
418 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const { SharePlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { mode: "development", devtool: false, plugins: [ new SharePlugin({ shared: { common: { eager: true, import: "./common?1", requiredVersion: "1.1.1" }, common2: { import: "./common?2", requiredVersion: "1.1.1" } } }) ] };