ccccccc / client /vite.config.ts
cnmksjs's picture
Upload 49 files
24fd742 verified
raw
history blame contribute delete
253 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 3000,
},
build: {
outDir: 'dist',
},
})