import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import VueDevTools from 'vite-plugin-vue-devtools' // https://vitejs.dev/config/ export default defineConfig({ plugins: [ vue(), VueDevTools(), ], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { host: '0.0.0.0', port: 5173, strictPort: true, https: false, open: true, proxy: { '/cdn': { target: 'https://oa-edu-1259243469.cos.ap-chengdu.myqcloud.com', changeOrigin: true, rewrite: (path) => path.replace(/^\/cdn/, '') } } } })