17 lines
281 B
TypeScript
17 lines
281 B
TypeScript
import { defineUserConfig } from "vuepress";
|
|
|
|
import theme from "./theme.js";
|
|
|
|
export default defineUserConfig({
|
|
base: "/",
|
|
|
|
lang: "zh-CN",
|
|
title: "余氏族谱",
|
|
description: "余氏族谱在线文档",
|
|
|
|
theme,
|
|
|
|
// 和 PWA 一起启用
|
|
// shouldPrefetch: false,
|
|
});
|