hosting-platform/frontend/vite.config.js

30 lines
515 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,
2026-01-10 10:34:25 +00:00
allowedHosts: [
'argeict.net',
'www.argeict.net',
'176.96.129.77',
'localhost'
],
2026-01-10 10:32:44 +00:00
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
}
}
}
})