fix!: remove locale redirection

It's too broken, not worth spending time fixing it

finxol.io de56e661 1fccae34

verified
Changed files
-8
src
-8
src/pages/[...others].astro
···
-
---
-
import { config } from "@/config.ts";
-
const url = Astro.url;
-
-
url.pathname = `/${config.defaultLocale}${url.pathname}`;
-
-
return Astro.redirect(url.href);
-
---