mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-05 20:19:00 +08:00
parent
7f3b0fec3e
commit
818f16f839
@ -5,6 +5,8 @@ const themes = require('prism-react-renderer').themes;
|
|||||||
const lightCodeTheme = themes.github;
|
const lightCodeTheme = themes.github;
|
||||||
const darkCodeTheme = themes.dracula;
|
const darkCodeTheme = themes.dracula;
|
||||||
|
|
||||||
|
const defaultLocale = 'en';
|
||||||
|
|
||||||
/** @type {import('@docusaurus/types').Config} */
|
/** @type {import('@docusaurus/types').Config} */
|
||||||
const config = {
|
const config = {
|
||||||
title: 'Modular Avatar',
|
title: 'Modular Avatar',
|
||||||
@ -25,7 +27,7 @@ const config = {
|
|||||||
// metadata like html lang. For example, if your site is Chinese, you may want
|
// metadata like html lang. For example, if your site is Chinese, you may want
|
||||||
// to replace "en" with "zh-Hans".
|
// to replace "en" with "zh-Hans".
|
||||||
i18n: {
|
i18n: {
|
||||||
defaultLocale: 'en',
|
defaultLocale,
|
||||||
locales: ['en','ja'],
|
locales: ['en','ja'],
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -36,10 +38,13 @@ const config = {
|
|||||||
({
|
({
|
||||||
docs: {
|
docs: {
|
||||||
sidebarPath: require.resolve('./sidebars.js'),
|
sidebarPath: require.resolve('./sidebars.js'),
|
||||||
// Please change this to your repo.
|
editUrl: ({locale, docPath}) => {
|
||||||
// Remove this to remove the "edit this page" links.
|
if (locale === defaultLocale) {
|
||||||
editUrl:
|
return `https://github.com/bdunderscore/modular-avatar/tree/main/docs~/docs/${docPath}`;
|
||||||
'https://github.com/bdunderscore/modular-avatar/tree/main/docs/',
|
} else {
|
||||||
|
return `https://github.com/bdunderscore/modular-avatar/tree/main/docs~/i18n/${locale}/docusaurus-plugin-content-docs/current/${docPath}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
blog: false,
|
blog: false,
|
||||||
theme: {
|
theme: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user