UNPKG

create-vuepress-theme-hope

Version:

Create vuepress-theme-hope demo project helper

26 lines (20 loc) 464 B
import { defineUserConfig } from "vuepress"; import theme from "./theme.js"; export default defineUserConfig({ base: "/", locales: { "/": { lang: "en-US", title: "Blog Demo", description: "A blog demo for vuepress-theme-hope", }, "/zh/": { lang: "zh-CN", title: "博客演示", description: "vuepress-theme-hope 的博客演示", }, }, theme, // Enable it with pwa // shouldPrefetch: false, });