fix: dynamically import Modal component

fixes error "document is not defined" if the user decides to display a modal at the beginning (for ads, promotions, etc...)
This commit is contained in:
Luis Orbaiceta
2021-10-20 11:15:56 +02:00
committed by GitHub
parent e3471db3eb
commit 02818d3f17

View File

@@ -42,6 +42,11 @@ const FeatureBar = dynamic(
dynamicProps
)
const Modal = dynamic(
() => import('@components/interface/Modal'),
{...dynamicProps, ssr: false}
)
interface Props {
pageProps: {
pages?: Page[]