InsuCompass / vite.config.ts
nagur-shareef-shaik's picture
Updated vite config ts
0505304
raw
history blame
180 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: false
}
})