chore: scaffold the project

This commit is contained in:
2024-04-18 15:10:31 +02:00
commit 7ba2e15940
13 changed files with 1805 additions and 0 deletions

6
vite.config.ts Normal file
View File

@@ -0,0 +1,6 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
export default defineConfig({
plugins: [react()],
});