From 9efd1da17e3eafdf3255a3946f5e53edc82d9d68 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Sun, 16 Nov 2025 15:29:46 +0700 Subject: [PATCH] Bugfix/missing reflect-metadata polyfill in apps/client (#5952) * Add reflect-metadata to polyfill --- apps/client/src/polyfills.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/src/polyfills.ts b/apps/client/src/polyfills.ts index bb1da3e23..df81e917b 100644 --- a/apps/client/src/polyfills.ts +++ b/apps/client/src/polyfills.ts @@ -52,3 +52,4 @@ import 'zone.js'; // Included with Angular CLI. */ import '@angular/localize/init'; +import 'reflect-metadata';