12345678910111213141516171819202122232425 |
- import { fileURLToPath, URL } from 'node:url'
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [
- vue(),
- ],
- server: {
- proxy: {
- '/api': {
- target: 'http://api.cocorobo.cn/',
- changeOrigin: true,
- // rewrite: (path) => path.replace(/^\/api/, '')
- },
- }
- },
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url))
- }
- }
- })
|