Initial commit

This commit is contained in:
wfz
2026-05-13 16:24:00 +08:00
commit 5728d3cbda
55 changed files with 37267 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { defineConfig } from 'vitepress'
export default defineConfig({
title: "乌仿镇",
description: "技术分享笔记",
lang: 'zh-CN',
vite: {
server: {
proxy: {
'/api': {
target: 'https://wufangzhen.com',
changeOrigin: true,
secure: false
}
}
}
},
sitemap: {
hostname: 'https://wufangzhen.com'
}
})