recipe/packages/create/template/docs/config/multi/config.ts

25 lines
487 B
TypeScript
Raw Normal View History

2024-08-18 19:16:25 +08:00
import { defineUserConfig } from "vuepress";
import theme from "./theme.js";
export default defineUserConfig({
base: "/",
locales: {
"/": {
lang: "en-US",
title: "Docs Demo",
description: "A docs demo for vuepress-theme-hope",
},
"/zh/": {
lang: "zh-TW",
title: "文檔範例",
description: "vuepress-theme-hope 的文檔範例",
},
},
theme,
// Enable it with pwa
// shouldPrefetch: false,
});