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;