Files
market_page/frontend/vite.config.js
jeremygan2021 6328e1d644 gunicorn
2026-02-10 22:11:02 +08:00

18 lines
321 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
//123
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
},
preview: {
host: '0.0.0.0',
port: 15173,
allowedHosts: ['market.quant-speed.com']
}
})