2023-12-15 08:13:46 +08:00

29 lines
576 B
TypeScript

import { defineUserConfig } from "vuepress";
import type { DefaultThemeOptions } from "vuepress";
import recoTheme from "vuepress-theme-reco";
import { themeConfig } from './config/index'
export default defineUserConfig({
locales: {
'/': {
lang: '中文',
title: 'MapStructPlus',
description: '',
},
'/en/': {
lang: 'English',
title: 'MapStructPlus',
description: ''
}
},
theme: recoTheme(themeConfig),
markdown: {
anchor: {
permalink: false,
permalinkBefore: false
}
}
// debug: true,
});