chore(bookoomoo): scaffold Vite + React + Tailwind app from skeleton with routing, layout, pages, auth, API wrapper

This commit is contained in:
2025-08-10 01:31:32 +07:00
parent 9aa4484129
commit a409cbd17b
23 changed files with 548 additions and 0 deletions

View File

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