README / vite.config.ts
John Bowyer
Replace with org-card app - simpler React app for organization page
5acadf5
raw
history blame contribute delete
243 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 7860,
host: '0.0.0.0'
},
build: {
outDir: 'dist',
emptyOutDir: true
}
})