mirror of
https://gitee.com/easii/mapstruct-plus.git
synced 2025-12-07 01:28:31 +08:00
29 lines
576 B
TypeScript
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,
|
|
});
|