import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import * as path from "node:path"; // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], resolve: { alias: { '@': path.resolve(__dirname, './src') } }, server: { proxy: { '/api': { target: 'http://localhost:3001', changeOrigin: true, // rewrite: (path) => path.replace(/^\/api/, '') } } } })