UNPKG

create-exam-project

Version:

Create exam projects with React + Express + PostgreSQL in seconds

17 lines (15 loc) 306 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:5000', changeOrigin: true } } } })