From 276bea81b0b591611f83724e4e2db9808bcc8b53 Mon Sep 17 00:00:00 2001 From: "Federico Pasqua (eisterman)" Date: Tue, 1 Apr 2025 11:42:49 +0200 Subject: [PATCH] Remove unused "Hydrate Fallback". Note: As already said, this loading appear even when the app/layout.tsx is loading. This is not the behaviour I want. In fact the behaviour I wanted is impossible to be needed with Next.js and his "SSR first" approach. --- src/app/loading.tsx | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/app/loading.tsx diff --git a/src/app/loading.tsx b/src/app/loading.tsx deleted file mode 100644 index c843076..0000000 --- a/src/app/loading.tsx +++ /dev/null @@ -1,8 +0,0 @@ -export default function Loading() { - return ( -
-
-

Loading, please wait...

-
- ); -} \ No newline at end of file