initial commit

This commit is contained in:
Zacharias-Brohn
2026-01-14 10:46:21 +01:00
commit 5c123db557
32 changed files with 7430 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
allowedHosts: ["zach-dev.cc"],
},
});