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 cdb4c9f commit 94fc303Copy full SHA for 94fc303
website/metadata.schema.json
@@ -44,7 +44,7 @@
44
"basePath": {
45
"type": "string",
46
"description": "The base public path for deployment. This must match the value used in typst-docs.",
47
- "pattern": "^/$|^/[^/]+/$"
+ "pattern": "^/$|^/([^/]+/)+$"
48
},
49
"displayTranslationStatus": {
50
"type": "boolean",
website/src/metadata.ts
@@ -13,7 +13,7 @@ type Metadata = {
13
displayTranslationStatus: boolean;
14
};
15
16
-const metadata = metadataJson as unknown as Metadata;
+const metadata = metadataJson as Metadata;
17
18
/** The language of the documentation. */
19
export const language = metadata.language;
0 commit comments