12 lines
231 B
Text
12 lines
231 B
Text
|
---
|
||
|
import { changeLanguage } from "i18next";
|
||
|
|
||
|
changeLanguage("jp");
|
||
|
|
||
|
Astro.cookies.set("Language", "JP", {
|
||
|
path: "/",
|
||
|
sameSite: 'strict'
|
||
|
});
|
||
|
return Astro.redirect("/");
|
||
|
---
|
||
|
<style is:global>body {background: black}</style>
|