yarn add swr

Global Configuration

컨텍스트 SWRConfig는 모든 SWR 훅에 대한 Global Configuration(옵션)을 제공할 수 있습니다.

< SWRConfig
	value={{
			refreshInterval: 3000,
			fetcher: (resource, init) => fetch(resource, init).then(res => res.json())
	}}
>
< Dashboard />
< /SWRConfig>

https://swr.vercel.app/docs/global-configuration

useSWR 옵션

const { data, error, isValidating, mutate } = useSWR(key, fetcher, options)

https://swr.vercel.app/docs/options

선택적으로 swr 훅을 사용하기 위해선?!

const { data } = useSWR(key ? key : null)