@keegancodes/foundations-next
v3.0.1
Published
These are my shared Next.js helpers I use in most apps
Downloads
133
Readme
@keegancodes/foundations-next
These are my shared Next.js helpers I use in most apps
Utils
import { getFullyQualifiedDeploymentUrl } from "@keegancodes/foundations-next";
Used to get URLs for sites with deployment protection:
const { url, headers } = await getFullyQualifiedDeploymentUrl(
`/api/cheers?slug=${slug}`,
);
const data = await fetch(url, {
cache: 'no-store',
headers,
});
```