import '../styles/globals.scss'; import type { AppProps } from 'next/app'; import { SWRConfig } from 'swr'; import fetchJson from '../lib/utils/swr-fetcher'; function MyApp({ Component, pageProps }: AppProps) { return ( { console.error(err); }, }} > ); } export default MyApp;