Hawbeez_Studio / frontend /vite.config.js
sushilideaclan01's picture
Import Hawbeez Creative Studio app
5d54b3c
raw
history blame contribute delete
280 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://127.0.0.1:8005',
changeOrigin: true,
},
},
},
})