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:
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.