This is probably a hacky solution, but, i got past this problem by creating my own production configuration file for mfe and then copying it, as follows:
Not all of the configuration you are trying to change above are tutorconfig params… some of them is env variables, for production or development.
If you see last line of each file has {{ patch("mfe-env-production") }} or {{ patch("mfe-env-development") }}. So this means to on way to override any would be to create a tutor plugin file, which is typically done as a yaml file (deprecated v0). e.g…
To change the MFEs logos from the default to your own logos, override the corresponding settings in the MFEs environment using patches mfe-env-production and mfe-env-development. For example, using the following plugin:
what would i do with this file? how is it executed, or applied to the configuration? i saw this in the plugin README, but there is no explanation about how to actually create a patch, nor what you’re supposed to do with it once you’ve created it.