fix: external route roles in dev mode

This commit is contained in:
Adolfo R. Brandes
2025-08-08 15:24:06 -03:00
committed by Adolfo R. Brandes
parent f1d18c45e6
commit a6c5f878ba

View File

@@ -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'
},
],