Files
blogs/vuepress.config.ts
SilverAg.L 3604b6e4c0
All checks were successful
部署文档 / build (push) Successful in 1m8s
update
- deps
- faster js cdn
- Diary: recents 2025
- Notes:
ArchInstall (archCN mirror, niri refs)
ArchUEFI (make `bootxxx.efi` questions more neutral)
SelfHosted (wont extend notes anymore)

Signed-off-by: SilverAg.L <caclx@outlook.com>
2025-12-26 00:40:16 +08:00

42 lines
747 B
TypeScript

import { defineUserConfig } from "vuepress";
import { removePwaPlugin } from "@vuepress/plugin-remove-pwa"
import theme from "./src/theme.hope.js";
export default defineUserConfig({
base: "/",
lang: "zh-CN",
title: "SilverAg.L",
description: "his personal blogs",
temp: ".temp",
cache: ".cache",
public: "public",
dest: "dist",
theme,
shouldPrefetch: false,
plugins: [
removePwaPlugin({}),
],
head: [
[
"link",
{
href: "https://npm.onmicrosoft.cn/",
rel: "preconnect",
crossorigin: "",
},
],
[
"link",
{
href: "https://npm.onmicrosoft.cn/@agxcoy/lxgw-wenkai-vp-hope@latest/style.css",
rel: "stylesheet",
},
],
],
});