From 3410ab88e425b525c48c928db9a58cc54222687f Mon Sep 17 00:00:00 2001 From: Claas Date: Sun, 19 Apr 2026 13:35:43 +0200 Subject: [PATCH] Update documentation --- app/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/index.tsx b/app/src/index.tsx index b62411c..8624fcf 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -3,7 +3,7 @@ import { render } from 'solid-js/web' import './index.css' import App from './App.tsx' -// If I am not mistaken, this should keep the polyfill out of the bundle +// Keep polyfill out of the bundle. You can see this as vite generates two js bundles, one with only the polyfill and one without. if (!("Temporal" in globalThis)) { console.debug("Temporal not found, polyfilling..."); const { Temporal } = await import("temporal-polyfill"); -- 2.51.2