summaryrefslogtreecommitdiff
path: root/src/pages/404.astro
blob: bc91220b8f3ad4c99f6f5123511cfbc1df145088 (plain)
1
2
3
4
5
6
7
---
import { getLocaleFromPathOrDefault } from '$lib/getLocaleFromPath';

const locale = getLocaleFromPathOrDefault(Astro.url.pathname);
---

<meta http-equiv="refresh" content={`0;url=/${locale}/not-found`} />