Skip to content

Commit

Permalink
πŸ› switch map to CSR
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildmodeOne committed Oct 22, 2024
1 parent 8fc5145 commit ea4ac8c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pages/tour/[city].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ import Head from 'next/head'
import INGOLSTADT from '@/data/tour/ingolstadt.json'
import NEUBURG from '@/data/tour/neuburg.json'
import { GetStaticProps } from 'next'
import TourMap from '@/components/tour/tourMap'
import dynamic from 'next/dynamic'

const TourMap = dynamic(() => import('@/components/tour/tourMap'), {
ssr: false,
})
export interface TourData {
title: string
description_de?: string
Expand Down

0 comments on commit ea4ac8c

Please sign in to comment.