問題:footer 根本沒有顯示
原因
The footer-related issue you are seeing is caused by a missing CMS layout configuration for the footer. It can be resolved by adding the following configuration to the “layoutSlots” configuration in your “app.module.ts”:
If you are referring to items such as the Header or Footer that are present on every page it is advised against lazy loading them. Since they will always need to be loaded there is no gain made in code splitting them. On the contrary, it will cause the total size of the main.js plus the lazy-loaded chunks to be greater than if these items were eagerly loaded.
如果 footer 隻在 home 頁面出現,但是 PDP 和 checkout 頁面消失了。可能的原因:
This was most likely caused by not using the B2C recipe anymore (B2cStorefrontModule). It can
be fixed by adding the following in your app.module.ts providers: