Vue


vite.config.js

<pre><code>import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [ vue(), ], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { proxy: { '/api': { target: 'http://10.105.114.59:8980', changeOrigin: true, rewrite: (path) =&amp;gt; path.replace(/^\/api/, '') } } } }) </code></pre>

页面列表

ITEM_HTML