Hello there! I am in the process of creating a web constructor. Currently, my application functions as follows:
- I verify the URL that the user is visiting (such as localhost:3000)
- I identify their project name within my web constructor (localhost:3000 -> projectName: project1)
- I retrieve the website data for the user (including the favicon and title) (project1: {favicon: 'url', ...} Is it feasible to display the favicon and title before the user navigates to the page, ensuring that the correct favicon and title are visible in the browser? At present, I can only achieve this using useEffect in the main App component (though this method is not ideal for SEO purposes). I have attempted using getInitialProps but it does not appear to fulfill the requirement.
Your assistance is greatly appreciated.