From a3b9a3aec19382d32d5cc59b3324aca95b9c1e91 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 17 Feb 2026 12:06:31 +0000 Subject: [PATCH] Add async_hooks to Webpack config externals Should fix issue for develop CD when building on Windows --- webpack.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.ts b/webpack.config.ts index 6a1abfc8cf..bb0b0683dc 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -260,6 +260,7 @@ export default (env: string, argv: Record): webpack.Configuration = "net": false, "tls": false, "crypto": false, + "async_hooks": false, // Polyfill needed by counterpart "util": import.meta.resolve("util/"),