chore: initialize React + Vite project with Docker deployment and apartment listing application

This commit is contained in:
2026-02-13 16:45:55 +01:00
commit 18f1f91c9f
22 changed files with 4656 additions and 0 deletions

7
vite.config.js Normal file
View File

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