Initial commit: intelaide backend and frontend

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
root
2026-01-20 04:54:10 +00:00
commit 566576637d
297 changed files with 74281 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// intelaide-frontend/vite.config.js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
base: process.env.NODE_ENV === 'production' ? '/' : '/dev/',
plugins: [react()],
server: {
port: 3000,
host: '127.0.0.1',
allowedHosts: ['127.0.0.1', 'www.intelaide.ai'],
},
})