Files
boc/cc-frontend/vite.config.js
T

21 lines
356 B
JavaScript
Raw Normal View History

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
sourcemap: true
},
server: {
port: 3000,
proxy: {
'/api': {
target: 'https://cc.landvex.com',
changeOrigin: true,
secure: false
}
}
}
})