Server Render (SSR) One application in Single SPA

673 Views Asked by At

I have below Layout (routes.html) in my Single SPA Application

<single-spa-router>
    <redirect from="/" to="/home"></redirect>
  
    <div id="wrapper">
      <div class="wrapper-content">
        <div class="layout-content">
          <application name="@ppbet/layout-app"></application>
        </div>
        <div class="main-content">
          <div class="layout-left-content">
            <application name="@ppbet/layout-left"></application>
          </div>
          <div class="center-content">
            <route path="home" exact>
              <application name="@ppbet/home-app"></application>
            </route>
            <div class="main-content-custom">
              <footer>
                <!-- I want this Application to be rendered on Server side -->
                <application name="@ppbet/footer"></application>
              </footer>
            </div>
          </div>
          <div class="layout-right-content">
            <application name="@ppbet/layout-right"></application>
          </div>
        </div>
      </div>
    </div>
  </single-spa-router>

I want the footer Application(A React Component) to be Server Render at the time of load of application.

I have read through SSR in Single SPA Looks like this to render a whole application on server side and rest of applications on client side. I even tried to use single-spa-html, But i see this will not render my HTML on Server side. Any help will be Appreciated.

0

There are 0 best solutions below