Plugins: Case-sensitive routes for standalone pages (#62779)

* feat: extend the RouteDescription witha `sensitive` property

* feat: use case-sensitive routes for custom plugin standalone pages

* fix: hcheck for `/a/` instead of `/a`
This commit is contained in:
Levente Balogh
2023-02-03 09:01:34 +01:00
committed by GitHub
parent cf650c9349
commit 48e0ab2142
3 changed files with 4 additions and 0 deletions

View File

@@ -19,4 +19,5 @@ export interface RouteDescriptor {
routeName?: string;
chromeless?: boolean;
exact?: boolean;
sensitive?: boolean;
}