Hi.
I’m trying to configure my tutor-mfe development env to use a remote instance of openedx.
I’ve gone through this thread and used the mfe-env-development
patch to point the MFE, for instance account
, to my remote instance:
name: mfe-dev-env
version: 0.1.0
patches:
mfe-env-development: |
LMS_BASE_URL=https://remote-url.com/
LOGIN_URL=https://remote-url.com/login
LOGO_URL=https://remote-url.com//theming/asset/images/logo.png
LOGO_TRADEMARK_URL=https://remote-url.com//login/theming/asset/images/logo.png
LOGOUT_URL=https://remote-url.com/logout
MARKETING_SITE_BASE_URL=https://remote-url.com/
REFRESH_ACCESS_TOKEN_ENDPOINT=https://remote-url.com/login_refresh
STUDIO_BASE_URL=https://remote-url.com/
I’ve disabled CORS policy on my browser. I keep getting redirected to LMS dashboard when I try to access /account/settings.
I’m under the impression that the MFE should be access the endpoints of the instance after login. Am I missing a config or something? Any help appreciated.