From ffc99d202538a1078a801f3b2ee4c88690bda2dd Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 12 Nov 2024 14:25:13 -0800 Subject: [PATCH] webpack: Remove unused hexoid alias. koa-body was switched to @koa/bodyparser during development of #29198, so this was never used. Signed-off-by: Anders Kaseorg --- web/webpack.config.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/web/webpack.config.ts b/web/webpack.config.ts index 3b54e37901..c43dc3a954 100644 --- a/web/webpack.config.ts +++ b/web/webpack.config.ts @@ -278,12 +278,6 @@ const config = ( output: { path: path.resolve(__dirname, "../static/webpack-bundles"), }, - resolve: { - alias: { - // koa-body uses formidable 2.x, which suffers from https://github.com/node-formidable/formidable/issues/337 - hexoid: "hexoid/dist/index.js", - }, - }, }; return [frontendConfig, serverConfig];