Files
intelaide/intelaide-frontend/vite.config.js
2026-01-20 04:54:10 +00:00

15 lines
343 B
JavaScript

// 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'],
},
})