webs / vite.config.js
Aqso's picture
Create vite.config.js
8ddcc39 verified
raw
history blame contribute delete
241 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// Konfigurasi Mutlak Vite + React
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0', // Bypass binding HF
port: 7860
}
})