blob: 447a91e5b92b9320d399528cba5e12df561bb974 (
plain)
1
2
3
4
5
6
7
|
---
import { getLocaleFromPathOrThrow } from '$lib/getLocaleFromPath';
const locale = getLocaleFromPathOrThrow(Astro.url.pathname);
---
<meta http-equiv="refresh" content={`0;url=/${locale}/not-found`} />
|