web: i18n system & navbar translations

dynamic page language and language dropdown!! finally!!
This commit is contained in:
wukko
2024-07-03 00:16:03 +06:00
parent d11874e57f
commit 9939f3b172
19 changed files with 229 additions and 37 deletions

View File

@ -1,6 +1,15 @@
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import { defineConfig, searchForWorkspaceRoot } from "vite";
export default defineConfig({
plugins: [sveltekit()],
plugins: [
sveltekit()
],
server: {
fs: {
allow: [
searchForWorkspaceRoot(process.cwd())
]
}
}
});