mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 23:19:55 +08:00
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
|
|
export default defineConfig(() => ({
|
|
server: {
|
|
proxy: {
|
|
'/hashmap.json': {
|
|
target: 'https://ziuchen.github.io',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
},
|
|
plugins: [vueJsx()]
|
|
}))
|