Initial Commit

This commit is contained in:
Simeon Radivoev 2026-05-06 22:36:32 +03:00
commit 6aa786e326
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
46 changed files with 1697 additions and 0 deletions

14
astro.config.mjs Normal file
View file

@ -0,0 +1,14 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite'
// https://astro.build/config
export default defineConfig({
site: 'https://gameflow.github.io',
base: '/',
vite: {
plugins: [
tailwindcss()
]
}
});