elastic / next-eui-starter

Start building Kibana protoypes quickly with the Next.js EUI Starter
https://elastic.github.io/next-eui-starter/
Apache License 2.0
94 stars 30 forks source link

Error using EuiHeaderBreadcrumbs #10

Closed IvanovRoman closed 4 years ago

IvanovRoman commented 4 years ago

Get error "ReferenceError: window is not defined" Solved:

import dynamic from 'next/dynamic';

const EuiHeaderBreadcrumbs = dynamic( () => import('@elastic/eui').then(mod => mod.EuiHeaderBreadcrumbs), { ssr: false, } );