Compare commits
4 Commits
main
...
0e3c6f058a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e3c6f058a | ||
|
|
a8b94c99c0 | ||
|
|
56d137b485 | ||
|
|
a721c564b4 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,5 @@
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
.next
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
|
|||||||
145
.next/dev/types/cache-life.d.ts
vendored
Normal file
145
.next/dev/types/cache-life.d.ts
vendored
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
// Type definitions for Next.js cacheLife configs
|
||||||
|
|
||||||
|
declare module 'next/cache' {
|
||||||
|
export { unstable_cache } from 'next/dist/server/web/spec-extension/unstable-cache'
|
||||||
|
export {
|
||||||
|
updateTag,
|
||||||
|
revalidateTag,
|
||||||
|
revalidatePath,
|
||||||
|
refresh,
|
||||||
|
} from 'next/dist/server/web/spec-extension/revalidate'
|
||||||
|
export { unstable_noStore } from 'next/dist/server/web/spec-extension/unstable-no-store'
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"default"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 900 seconds (15 minutes)
|
||||||
|
* expire: never
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 15 minutes, start revalidating new values in the background.
|
||||||
|
* It lives for the maximum age of the server cache. If this entry has no traffic for a while, it may serve an old value the next request.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "default"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"seconds"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 30 seconds
|
||||||
|
* revalidate: 1 seconds
|
||||||
|
* expire: 60 seconds (1 minute)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 30 seconds before checking with the server.
|
||||||
|
* If the server receives a new request after 1 seconds, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 1 minute it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "seconds"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"minutes"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 60 seconds (1 minute)
|
||||||
|
* expire: 3600 seconds (1 hour)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 1 minute, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 1 hour it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "minutes"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"hours"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 3600 seconds (1 hour)
|
||||||
|
* expire: 86400 seconds (1 day)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 1 hour, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 1 day it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "hours"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"days"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 86400 seconds (1 day)
|
||||||
|
* expire: 604800 seconds (1 week)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 1 day, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 1 week it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "days"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"weeks"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 604800 seconds (1 week)
|
||||||
|
* expire: 2592000 seconds (1 month)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 1 week, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 1 month it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "weeks"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` for a timespan defined by the `"max"` profile.
|
||||||
|
* ```
|
||||||
|
* stale: 300 seconds (5 minutes)
|
||||||
|
* revalidate: 2592000 seconds (1 month)
|
||||||
|
* expire: 31536000 seconds (365 days)
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This cache may be stale on clients for 5 minutes before checking with the server.
|
||||||
|
* If the server receives a new request after 1 month, start revalidating new values in the background.
|
||||||
|
* If this entry has no traffic for 365 days it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: "max"): void
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache this `"use cache"` using a custom timespan.
|
||||||
|
* ```
|
||||||
|
* stale: ... // seconds
|
||||||
|
* revalidate: ... // seconds
|
||||||
|
* expire: ... // seconds
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* This is similar to Cache-Control: max-age=`stale`,s-max-age=`revalidate`,stale-while-revalidate=`expire-revalidate`
|
||||||
|
*
|
||||||
|
* If a value is left out, the lowest of other cacheLife() calls or the default, is used instead.
|
||||||
|
*/
|
||||||
|
export function cacheLife(profile: {
|
||||||
|
/**
|
||||||
|
* This cache may be stale on clients for ... seconds before checking with the server.
|
||||||
|
*/
|
||||||
|
stale?: number,
|
||||||
|
/**
|
||||||
|
* If the server receives a new request after ... seconds, start revalidating new values in the background.
|
||||||
|
*/
|
||||||
|
revalidate?: number,
|
||||||
|
/**
|
||||||
|
* If this entry has no traffic for ... seconds it will expire. The next request will recompute it.
|
||||||
|
*/
|
||||||
|
expire?: number
|
||||||
|
}): void
|
||||||
|
|
||||||
|
|
||||||
|
import { cacheTag } from 'next/dist/server/use-cache/cache-tag'
|
||||||
|
export { cacheTag }
|
||||||
|
|
||||||
|
export const unstable_cacheTag: typeof cacheTag
|
||||||
|
export const unstable_cacheLife: typeof cacheLife
|
||||||
|
}
|
||||||
55
.next/dev/types/routes.d.ts
vendored
Normal file
55
.next/dev/types/routes.d.ts
vendored
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
// This file is generated automatically by Next.js
|
||||||
|
// Do not edit this file manually
|
||||||
|
|
||||||
|
type AppRoutes = never
|
||||||
|
type PageRoutes = never
|
||||||
|
type LayoutRoutes = never
|
||||||
|
type RedirectRoutes = never
|
||||||
|
type RewriteRoutes = never
|
||||||
|
type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes
|
||||||
|
|
||||||
|
|
||||||
|
interface ParamMap {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export type ParamsOf<Route extends Routes> = ParamMap[Route]
|
||||||
|
|
||||||
|
interface LayoutSlotMap {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap }
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
/**
|
||||||
|
* Props for Next.js App Router page components
|
||||||
|
* @example
|
||||||
|
* ```tsx
|
||||||
|
* export default function Page(props: PageProps<'/blog/[slug]'>) {
|
||||||
|
* const { slug } = await props.params
|
||||||
|
* return <div>Blog post: {slug}</div>
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
interface PageProps<AppRoute extends AppRoutes> {
|
||||||
|
params: Promise<ParamMap[AppRoute]>
|
||||||
|
searchParams: Promise<Record<string, string | string[] | undefined>>
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Props for Next.js App Router layout components
|
||||||
|
* @example
|
||||||
|
* ```tsx
|
||||||
|
* export default function Layout(props: LayoutProps<'/dashboard'>) {
|
||||||
|
* return <div>{props.children}</div>
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
type LayoutProps<LayoutRoute extends LayoutRoutes> = {
|
||||||
|
params: Promise<ParamMap[LayoutRoute]>
|
||||||
|
children: React.ReactNode
|
||||||
|
} & {
|
||||||
|
[K in LayoutSlotMap[LayoutRoute]]: React.ReactNode
|
||||||
|
}
|
||||||
|
}
|
||||||
16
.next/dev/types/validator.ts
Normal file
16
.next/dev/types/validator.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
// This file is generated automatically by Next.js
|
||||||
|
// Do not edit this file manually
|
||||||
|
// This file validates that all pages and layouts export the correct types
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user