Initial setup for URL Shortener with Dashboard + Admin-Panel based on Vite + React

This commit is contained in:
Tronax 2025-07-19 14:22:08 +02:00
parent 295af34956
commit eb9747ae91
24 changed files with 7157 additions and 0 deletions

7
client/vite.config.ts Normal file
View file

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