1 import { defineConfig } from 'vite' 2 import react from '@vitejs/plugin-react' 3 4 // https://vite.dev/config/ 5 export default defineConfig({ 6 plugins: [react()], 7 server: {allowedHosts: ["rk-devbox1"]} 8 })