Initial commit: Vite + React project setup

This commit is contained in:
Sebastian
2025-12-05 16:56:43 +00:00
commit bd25742bf5
32 changed files with 3369 additions and 0 deletions

14
vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: true,
allowedHosts: [
'5173--main--sebastian--sebastian--sfkl73v7pva4g.pit-1.try.coder.app',
'.coder.app',
'localhost'
]
}
})