From c44c0c7c66152b0ceb2966adc40013e534d23e87 Mon Sep 17 00:00:00 2001 From: fede Date: Thu, 22 Jan 2026 01:43:50 -0300 Subject: [PATCH] correjida anulacion del ssr --- src/routes/htag/[htag]/+page.svelte | 1 - src/routes/htag/[htag]/+page.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/htag/[htag]/+page.svelte b/src/routes/htag/[htag]/+page.svelte index 4990768..90b028b 100644 --- a/src/routes/htag/[htag]/+page.svelte +++ b/src/routes/htag/[htag]/+page.svelte @@ -11,7 +11,6 @@ import Separator from '@/components/ui/separator/separator.svelte'; import { page } from '$app/state'; - export const ssr = false; interface props { data: { htag: string; diff --git a/src/routes/htag/[htag]/+page.ts b/src/routes/htag/[htag]/+page.ts index 78cce78..32dc6e0 100644 --- a/src/routes/htag/[htag]/+page.ts +++ b/src/routes/htag/[htag]/+page.ts @@ -1,4 +1,5 @@ import { obtenerCantidadDeUsosdeHtag } from '@/hooks/obtenerCantidadDeUsosdeHtag.js'; +export const ssr = false; export async function load({ params, fetch }) { let { htag } = params;