We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4fe0c commit 770d3abCopy full SHA for 770d3ab
website/src/components/templates/BaseTemplate.tsx
@@ -45,7 +45,10 @@ export const BaseTemplate: FC<BaseTemplateProps> = ({
45
const outline = page.outline;
46
const translationStatus = getTranslationStatus(route);
47
const absoluteRouteUrl = new URL(route, originUrl).toString();
48
- const faviconUrl = new URL(joinPath(basePath, "/favicon.png"), originUrl).toString();
+ const faviconUrl = new URL(
49
+ joinPath(basePath, "/favicon.png"),
50
+ originUrl,
51
+ ).toString();
52
const typstOfficialRouteUrl = joinPath(
53
typstOfficialDocsUrl,
54
removeBasePath(basePath, route),
0 commit comments