front_ponto_eletronico/vite.config.js
2025-03-16 11:56:35 -03:00

17 lines
389 B
JavaScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
historyApiFallback: true, // Fallback para o history mode do Vue Router
proxy: {
'/api': {
target: 'http://127.0.0.1:5000',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
});