Rewrite in bun and vite away from NextJs

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-29 22:07:58 +03:00
parent af7f23b9b5
commit 0d60dbbb5f
119 changed files with 714 additions and 302 deletions

9
vite.config.ts Normal file
View File

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