/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/externals/script-invalid-request/webpack.config.js
23 строки
540 B
Alexander Akait
fix(webmanifest): rewrite icon URLs at byte offsets (#21655)
10 авг 2026, 01:33
Не верифицирован
10 авг 2026, 01:33
5c5d009
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", optimization: { minimize: false }, // so the case can read its own bundle back node: { __filename: false }, externalsPresets: { node: true }, externals: { // only the first `@` splits, so the version in the URL stays part of it valid: "script _@https://cdn.example.com/npm/lodash@4.17.19/lodash.min.js", "missing-at": "script something", "leading-at": "script @something", "trailing-at": "script something@" } };