import { fileURLToPath, URL } from 'node:url' import vue from '@vitejs/plugin-vue' import { defineConfig } from 'vite' // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], server: { proxy: { '/api': { target: 'https://ipad.shenynet.com', changeOrigin: true, secure: true, }, }, }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, })