17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
root: 'src/client',
|
||
|
|
build: {
|
||
|
|
outDir: '../../dist/client',
|
||
|
|
emptyOutDir: true,
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
proxy: {
|
||
|
|
'/api': 'http://localhost:3000',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|