Importing mfe module in shell dynamically during runtime from getInitialProps method
Unanswered
Asiatic Lion posted this in #help-forum
Asiatic LionOP
could not dynamically import mfe module in shell, I could do the same in client side using dynamic import , but couldn't get the latest from getInitialProps in shell as below
ContentPage.getInitialProps = async (ctx) => {
const res = await loadRemote('regref/regmfe');
const finalRes = res.default.getInitialProps(ctx);
console.log("test finalRes : ", finalRes);
return finalRes;
}
ContentPage.getInitialProps = async (ctx) => {
const res = await loadRemote('regref/regmfe');
const finalRes = res.default.getInitialProps(ctx);
console.log("test finalRes : ", finalRes);
return finalRes;
}