/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.105.3
examples/module-code-splitting/webpack.config.js
21 строка
332 B
Alexander Akait
refactor: examples (#20085)
04 ноя 2025, 18:22
Не верифицирован
04 ноя 2025, 18:22
196e19e
Код
Авторство
О чём код?
"use strict"; /** @type {import("webpack").Configuration} */ const config = { output: { module: true, library: { type: "module" } }, optimization: { usedExports: true, concatenateModules: true }, target: "browserslist: last 2 chrome versions", experiments: { outputModule: true } }; module.exports = config;