23 lines
444 B
JavaScript
Executable File
23 lines
444 B
JavaScript
Executable File
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
root: '.', // force project root
|
|
build: {
|
|
outDir: 'dist',
|
|
rollupOptions: {
|
|
input: 'index.html' // explicit entry
|
|
}
|
|
},
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:4000",
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
})
|