File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -21,5 +21,5 @@ dotenv \
2121 -e .env.local \
2222 -e .env.development \
2323 -e .env \
24- -- bash -c ' ./deploy/scripts/make_envs_script.sh && next dev --turbopack - p $NEXT_PUBLIC_APP_PORT' |
24+ -- bash -c ' ./deploy/scripts/make_envs_script.sh && next dev -p $NEXT_PUBLIC_APP_PORT' |
2525pino-pretty
Original file line number Diff line number Diff line change 11import { Box , Flex } from '@chakra-ui/react' ;
2+ import dynamic from 'next/dynamic' ;
23import React from 'react' ;
34
45import config from 'configs/app' ;
56import HeroBanner from 'ui/home/HeroBanner' ;
6- import ChainIndicators from 'ui/home/indicators/ChainIndicators' ;
7- import LatestArbitrumL2Batches from 'ui/home/latestBatches/LatestArbitrumL2Batches' ;
8- import LatestZkEvmL2Batches from 'ui/home/latestBatches/LatestZkEvmL2Batches' ;
9- import LatestBlocks from 'ui/home/LatestBlocks' ;
10- import Stats from 'ui/home/Stats' ;
11- import Transactions from 'ui/home/Transactions' ;
7+
8+ const ChainIndicators = dynamic ( ( ) => import ( 'ui/home/indicators/ChainIndicators' ) , { ssr : false } ) ;
9+ const LatestArbitrumL2Batches = dynamic ( ( ) => import ( 'ui/home/latestBatches/LatestArbitrumL2Batches' ) , { ssr : false } ) ;
10+ const LatestZkEvmL2Batches = dynamic ( ( ) => import ( 'ui/home/latestBatches/LatestZkEvmL2Batches' ) , { ssr : false } ) ;
11+ const LatestBlocks = dynamic ( ( ) => import ( 'ui/home/LatestBlocks' ) , { ssr : false } ) ;
12+ const Stats = dynamic ( ( ) => import ( 'ui/home/Stats' ) , { ssr : false } ) ;
13+ const Transactions = dynamic ( ( ) => import ( 'ui/home/Transactions' ) , { ssr : false } ) ;
1214
1315const rollupFeature = config . features . rollup ;
1416
You can’t perform that action at this time.
0 commit comments