ZiuChen.github.io/docs/vite.config.ts
2025-08-01 23:47:17 +08:00

13 lines
218 B
TypeScript

import { defineConfig } from 'vite'
export default defineConfig(() => ({
server: {
proxy: {
'/hashmap.json': {
target: 'https://ziuchen.github.io',
changeOrigin: true
}
}
}
}))