Files
blogs/vuepress.config.ts
SilverAg.L 69de54787e
All checks were successful
部署文档 / build (push) Successful in 2m0s
style: switch to LXGW Wenkai Screen
Noto Serif SC by default (400 weight) is still too light in 1080p 100% scale,
which may looks unclear sometimes.
2025-07-02 01:45:47 +08:00

38 lines
713 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://cdn.jsdelivr.net/npm/lxgw-wenkai-screen-web/style.css",
rel: "stylesheet",
// as: "font",
// crossorigin: "",
// media: "print",
// onload: "this.media='all'",
},
],
],
});