You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

35 lines
636 B

import { defineUserConfig } from "@vuepress/cli";
import hopeTheme from "./themeConfig";
export default defineUserConfig({
base: "/",
dest: "./dist",
head: [
[
"link",
{
rel: "stylesheet",
href: "//at.alicdn.com/t/font_2410206_mfj6e1vbwo.css",
},
],
],
locales: {
// "/": {
// lang: "en-US",
// title: "Theme Demo",
// description: "A demo for vuepress-theme-hope",
// },
"/": {
lang: "zh-CN",
title: "西安交通大学电信科协",
description: "Site of XJTU STEI",
},
},
theme: hopeTheme,
shouldPrefetch: false,
});