Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/pages/config/full_example.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ const config = {
// This will disable the incremental cache
// This is generally not recommended, as this is necessary for ISR AND SSG routes as well as the fetch cache
disableIncrementalCache: true,
// By default, the middleware headers and cookies will override the handler headers and cookies.
// This is executed for every request and after next config headers and middleware has been executed
// It can either be middleware or handler
headersAndCookiesPriority: "middleware"
}

//The path to the target folder of build output from the `buildCommand` option (the path which will contain the `.next` and `.open-next` folders). This path is relative from the current process.cwd() - Optional default to "."
Expand Down
Loading