create-vuepress-theme-hope
Version:
Create vuepress-theme-hope demo project helper
26 lines (20 loc) • 464 B
text/typescript
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-CN",
title: "文档演示",
description: "vuepress-theme-hope 的文档演示",
},
},
theme,
// Enable it with pwa
// shouldPrefetch: false,
});