feat: test auth

This commit is contained in:
thomas
2024-03-29 21:29:52 +01:00
parent 73a81f4831
commit 18b1dc0a70
18 changed files with 1749 additions and 386 deletions

View File

@@ -1,6 +1,7 @@
import starlight from '@astrojs/starlight';
import { defineConfig } from 'astro/config';
import svelte from '@astrojs/svelte';
import vercel from '@astrojs/vercel/serverless';
export const locales = {
root: {
@@ -66,7 +67,7 @@ export default defineConfig({
// ru: 'Leaderboard'
// }
// },
{
{
label: 'Challenges',
autogenerate: {
directory: 'challenges'
@@ -109,5 +110,7 @@ export default defineConfig({
},
defaultLocale: 'root',
locales
}), svelte()]
}), svelte()],
output: "hybrid",
adapter: vercel()
});