Files
blogs/vuepress.config.ts
SilverAg.L 7b982a06fe
All checks were successful
部署文档 / build (push) Successful in 1m9s
fix(css): explicitly refer bold style-sheet
2025-07-02 04:37:12 +08:00

49 lines
955 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://fastly.jsdelivr.net/",
rel: "preconnect",
crossorigin: "",
},
],
[
"link",
{
href: "https://fastly.jsdelivr.net/npm/@callmebill/lxgw-wenkai-web@latest/lxgwwenkai-regular/result.css",
rel: "stylesheet",
},
],
[
"link",
{
href: "https://fastly.jsdelivr.net/npm/@callmebill/lxgw-wenkai-web@latest/lxgwwenkai-bold/result.css",
rel: "stylesheet",
},
],
],
});