All checks were successful
部署文档 / build (push) Successful in 1m8s
- 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>
42 lines
747 B
TypeScript
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",
|
|
},
|
|
],
|
|
],
|
|
});
|