ca-grow-ops-manager/frontend/vite.config.ts
fullsizemalt 9c5ffec28d
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s
fix: Add missing project files for backend/frontend build
2025-12-09 00:23:28 -08:00

11 lines
228 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 80,
}
})