frontend-app-api: make it possible to bind routes through config

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-12 17:26:21 +02:00
parent 659651bfcc
commit 2307fb1747
4 changed files with 140 additions and 9 deletions
+7
View File
@@ -24,6 +24,13 @@ export interface Config {
packages?: 'all' | { include?: string[]; exclude?: string[] };
};
routes?: {
/**
* @deepVisibility frontend
*/
bindings?: { [externalRouteRefId: string]: string };
};
/**
* @deepVisibility frontend
*/