Files
blogs/vuepress.config.ts
SilverAg.L 9338c38cb5
All checks were successful
部署文档 / build (push) Successful in 4m29s
style: use my own build of LXGW WenKai.
2025-07-16 22:26:35 +08:00

42 lines
729 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://unpkg.com/",
rel: "preconnect",
crossorigin: "",
},
],
[
"link",
{
href: "https://unpkg.com/@agxcoy/lxgw-wenkai-vp-hope@latest/style.css",
rel: "stylesheet",
},
],
],
});