import { defineConfig } from 'vite'; import { createHtmlPlugin } from 'vite-plugin-html'; export default defineConfig({ plugins: [ createHtmlPlugin({ minify: true, entry: '/src/main.js', template: 'index.html', }), ], server: { port: 5173, open: true, proxy: { '/api': { target: 'http://localhost:5000', // Backend Flask của bạn changeOrigin: true, } } } });