import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [vue()], server: { port: 5175, host: '0.0.0.0', allowedHosts: ['51bike.online', 'store.51bike.online'], proxy: { '/api': { target: 'http://localhost:3000', changeOrigin: true } } }, build: { rollupOptions: { output: { manualChunks: { 'element-plus': ['element-plus'], 'vendor': ['vue', 'vue-router', 'axios'] } } } } })