1
0
Fork 0
This repository has been archived on 2024-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
poke-on-astro-experiment/src/pages/api/language/jp.astro

12 lines
231 B
Text
Raw Normal View History

2024-06-21 05:18:06 -04:00
---
import { changeLanguage } from "i18next";
changeLanguage("jp");
Astro.cookies.set("Language", "JP", {
path: "/",
sameSite: 'strict'
});
return Astro.redirect("/");
---
<style is:global>body {background: black}</style>