chore(site): move website to frontend/packages/website

This commit is contained in:
Nicholas Kissel 2026-01-27 18:32:14 -08:00 committed by Nathan Flurry
parent fb60a06242
commit 45e668e9cc
46 changed files with 20 additions and 60 deletions

View file

@ -0,0 +1,11 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
output: 'static',
integrations: [
react(),
tailwind()
]
});