From 33f86fd9d4102f3d3bafde0af0f4c1b63687dce1 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 14:28:31 +0000 Subject: [PATCH] Update components/empty-loader.tsx --- components/empty-loader.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 components/empty-loader.tsx diff --git a/components/empty-loader.tsx b/components/empty-loader.tsx new file mode 100644 index 0000000..608b521 --- /dev/null +++ b/components/empty-loader.tsx @@ -0,0 +1,9 @@ +/** + * Empty loader for Vercel builds + * This file replaces tailwind-cdn-loader.tsx via webpack alias + * to completely remove CDN loading code from production bundles + */ + +export function TailwindCDNLoader() { + return null; +}