/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/preload-prefetch-shared/webpack.config.js
18 строк
306 B
Alexander Akait
feat(html): add `html` source type for linking HTML pages (#21346)
06 июл 2026, 22:32
Не верифицирован
06 июл 2026, 22:32
6ed4473
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", output: { filename: "[name].js", chunkFilename: "[name].chunk.js", cssChunkFilename: "[name].chunk.css" }, optimization: { chunkIds: "named" }, experiments: { html: true, css: true } };