Files
services-site/vite.config.ts
Agent Zero 88eb8c793a Initial commit: Modern services website with React + Vite
Features:
- Responsive hero section with animated gradients
- Services grid with 6 service cards (Web Dev, UI/UX, Marketing, Mobile, Cloud, Security)
- About section with company highlights and stats
- Contact form and contact information
- Modern dark theme with gradient accents
- Fully responsive design
- Optimized for Coolify static deployment

Tech Stack:
- React 18
- TypeScript
- Vite
- Lucide React icons
- CSS custom properties and gradients
2026-02-15 14:10:55 +00:00

13 lines
225 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
emptyOutDir: true,
sourcemap: true
},
base: './'
})