Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
17 lines
748 B
TypeScript
17 lines
748 B
TypeScript
/**
|
|
* This function can be used to declaratively opt out of static rendering and indicate a particular component should not be cached.
|
|
*
|
|
* It marks the current scope as dynamic.
|
|
*
|
|
* - In [non-PPR](https://nextjs.org/docs/app/api-reference/next-config-js/partial-prerendering) cases this will make a static render
|
|
* halt and mark the page as dynamic.
|
|
* - In PPR cases this will postpone the render at this location.
|
|
*
|
|
* If we are inside a cache scope then this function does nothing.
|
|
*
|
|
* @note It expects to be called within App Router and will error otherwise.
|
|
*
|
|
* Read more: [Next.js Docs: `unstable_noStore`](https://nextjs.org/docs/app/api-reference/functions/unstable_noStore)
|
|
*/
|
|
export declare function unstable_noStore(): void;
|