How to customize header and footer in tutor mfe

Hi @allen_luna,

I follow the steps and works for me

I write the steps:

  1. Create a tutor plugin. (following this tutorial Creating a Tutor plugin — Tutor documentation)
  2. I use this configuration understanding that the override is only for authn MFE:
from tutor import hooks

hooks.Filters.ENV_PATCHES.add_items(
    [
        (
            "mfe-dockerfile-post-npm-install-authn",
            """
    RUN npm install '@edx/brand@git+https://github.com/allenluna/VXI_Brand-OpenEdx.git'
    """
        ),
    ]
)
  1. Enable the plugin tutor plugins enable myplugin
  2. Save the configuration tutor config save
  3. Build the image tutor images build mfe
  4. Start my environment tutor <dev/local> start
1 Like