feat: init commit for setup monorepo

This commit is contained in:
Firman Ramdhani
2026-01-05 17:38:05 +07:00
parent 93d04e660e
commit e6485b066d
34 changed files with 785 additions and 261 deletions
+8
View File
@@ -0,0 +1,8 @@
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()],
});