UNPKG

create-ex-den-kit

Version:

Create exam projects with Ex-Den-Kit

17 lines (15 loc) 310 B
import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], server: { port: 3000, proxy: { '/api': { target: 'http://localhost:3001', changeOrigin: true, }, }, }, })