From a6c5f878ba17da908aae30efa072be3275983142 Mon Sep 17 00:00:00 2001 From: "Adolfo R. Brandes" Date: Fri, 8 Aug 2025 15:24:06 -0300 Subject: [PATCH] fix: external route roles in dev mode --- site.config.dev.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site.config.dev.tsx b/site.config.dev.tsx index 5e50eed..cf10014 100644 --- a/site.config.dev.tsx +++ b/site.config.dev.tsx @@ -22,15 +22,15 @@ const siteConfig: SiteConfig = { ], externalRoutes: [ { - role: 'profile', + role: 'org.openedx.frontend.role.profile', url: 'http://apps.local.openedx.io:1995/profile/' }, { - role: 'account', + role: 'org.openedx.frontend.role.account', url: 'http://apps.local.openedx.io:1997/account/' }, { - role: 'logout', + role: 'org.openedx.frontend.role.logout', url: 'http://local.openedx.io:8000/logout' }, ],