codigo0/promo-site/vite.config.ts

21 lines
363 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
export default defineConfig({
plugins: [react()],
server: {
port: 9113,
host: true,
proxy: {
'/api': {
target: 'http://207.180.226.141:3002',
changeOrigin: true
}
}
},
build: {
outDir: 'dist',
emptyOutDir: true
}
});