feat: 定期检查文档更新并弹出提醒

- 扩展基础主题代码做抽取
This commit is contained in:
ZiuChen
2023-11-17 00:33:46 +08:00
parent f55842e2ac
commit 9c60e54509
9 changed files with 1280 additions and 35 deletions

14
docs/vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
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()]
}))