第一次提交

This commit is contained in:
2025-12-15 23:16:59 +08:00
commit 3e0da32c18
93 changed files with 14105 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import { defineUserConfig } from "vuepress";
import { getDirname, path } from "vuepress/utils";
const __dirname = getDirname(import.meta.url);
import theme from "./theme.js";
export default defineUserConfig({
base: "/",
lang: "zh-CN",
title: "氓氓小栈",
description: "氓氓小栈",
theme,
alias: {
"@theme-hope/modules/blog/components/BlogHero": path.resolve(
__dirname,
"./components/BlogHero.vue",
),
},
// 和 PWA 一起启用
// shouldPrefetch: false,
});