/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.100.2
examples/wasm-complex/webpack.config.js
24 строки
428 B
Alexander Akait
refactor: use `eslint-config-webpack` (#19645)
02 июл 2025, 15:10
Не верифицирован
02 июл 2025, 15:10
02a1d22
Код
Авторство
О чём код?
"use strict"; module.exports = { // mode: "development" || "production", output: { publicPath: "dist/" }, module: { rules: [ { test: /\.wat$/, use: "wast-loader", type: "webassembly/async" } ] }, optimization: { chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only) }, experiments: { asyncWebAssembly: true, topLevelAwait: true } };