hosting-platform/frontend/vite.config.js

24 lines
401 B
JavaScript
Raw Normal View History

2026-01-10 10:14:12 +00:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 3001,
2026-01-10 10:32:44 +00:00
cors: true,
hmr: {
clientPort: 443,
protocol: 'wss'
},
2026-01-10 10:14:12 +00:00
proxy: {
'/api': {
2026-01-10 10:32:44 +00:00
target: 'https://api.argeict.net',
2026-01-10 10:14:12 +00:00
changeOrigin: true,
2026-01-10 10:32:44 +00:00
secure: true
2026-01-10 10:14:12 +00:00
}
}
}
})