docs: fix incorrect edit URL (#1070)

Closes: #1064
This commit is contained in:
bd_ 2024-08-30 20:17:26 -07:00 committed by GitHub
parent 7f3b0fec3e
commit 818f16f839
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: {