File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,9 +83,6 @@ export default function ClientSide({
8383 < div ref = { navbarRef } >
8484 < NavBar isNavOn = { isNavOn } toggleNavbar = { toggleNavbar } />
8585 </ div >
86- { isNavOn && (
87- < div className = "fixed inset-0 bg-black bg-opacity-50 z-10 transition-opacity duration-300" > </ div >
88- ) }
8986 < main
9087 className = { `flex-grow transition-all duration-300 ease-in-out ${
9188 isNavOn ? "lg:w-[95vw] md:w-[92vw]" : "w-[100vw]"
Original file line number Diff line number Diff line change 11@import "tailwindcss" ;
2+ @custom-variant dark (& : where (.dark , .dark * ));
23
34: root {
45 --foreground-rgb : 0 , 0 , 0 ;
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
3+ turbopack : { } ,
34 images : {
45 domains : [ 'storage.googleapis.com' ] ,
56 } ,
7+ webpack : ( config , { isServer } ) => {
8+ if ( isServer ) {
9+ config . externals . push ( 'canvas' ) ;
10+ } else {
11+ config . resolve . alias . canvas = false ;
12+ }
13+ return config ;
14+ } ,
615} ;
716
817export default nextConfig ;
You can’t perform that action at this time.
0 commit comments