Home

Issue: 939

App is not rendering layout components on server

[issue link]

I’m building my app locally and everything is fine. When i’m trying to reach it on server i have empty layout without any rendered components.

This is markup from server:

zrzut ekranu 2017-06-20 o 16 52 56

As you can see there is no other scrips then this tiny one with __NUXT notation.

This is default layout:

<template>
  <main>
    <app-header></app-header>
    <div class="g-content box-grid-vertical_align_middle">
      <div class="shift-padding_6-vertical box-full_width-grid">
        <div class="column-width_2"></div>
        <div class="column-width_8 shift-padding_6-horizontal">
          <nuxt></nuxt>
        </div>
        <div class="column-width_2"></div>
      </div>
    </div>
  </main>
</template>

I’m using latest version of nuxt and 2.5.3 version of vue router.

This question is available on Nuxt.js community (#c808)