Files
video-gen/video-gen-admin/vite.config.ts
T
2026-05-25 17:08:18 +08:00

10 lines
166 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5174,
},
})