mesa-react / frontend /vite.config.js
Guilherme Silberfarb Costa
Initial commit for HF Space
d6c9678
raw
history blame contribute delete
166 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
},
})