2026-05-21 12:01:10 +07:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
import { createHtmlPlugin } from 'vite-plugin-html';
|
2026-05-04 21:28:34 +07:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2026-05-21 12:01:10 +07:00
|
|
|
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,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|