RL-Project / frontend /vite.config.js
Shubham Sattigeri
This is my RL based project
36131f5
Raw
History Blame Contribute Delete
164 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173
}
})