import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; const servicePort = process.env.PORT || '1552'; export default defineConfig({ plugins: [vue()], test: { environment: 'jsdom', globals: true, }, css: { preprocessorOptions: { less: { javascriptEnabled: true, }, }, }, server: { port: 5173, proxy: { '/api': { target: `http://localhost:${servicePort}`, changeOrigin: true, }, '/uploads': { target: `http://localhost:${servicePort}`, changeOrigin: true, }, }, }, });