mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 23:19:55 +08:00
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig(() => ({
|
|
server: {
|
|
proxy: {
|
|
'/hashmap.json': {
|
|
target: 'https://ziuchen.github.io',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
}))
|