Skip to content

Commit

Permalink
Merge branch 'canary' into static-metadata-type
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Sep 13, 2023
2 parents c910391 + f94d4f9 commit 74131dc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion bench/vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"commander": "2.20.0",
"dotenv": "10.0.0",
"downsample-lttb": "0.0.1",
"listr2": "5.0.5",
"listr2": "5.0.8",
"p-queue": "7.3.0",
"term-size": "3.0.2",
"webpack-bundle-analyzer": "^4.6.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ To disable in-memory caching, set `isrMemoryCacheSize` to `0` in your `next.conf
module.exports = {
experimental: {
// Defaults to 50MB
isrMemoryCacheSize: 0,
isrMemoryCacheSize: 0, // cache size in bytes
},
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ To disable in-memory caching, set `isrMemoryCacheSize` to `0` in your `next.conf
module.exports = {
experimental: {
// Defaults to 50MB
isrMemoryCacheSize: 0,
isrMemoryCacheSize: 0, // cache size in bytes
},
}
```
Expand Down
5 changes: 5 additions & 0 deletions packages/next/src/server/config-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@ export interface ExperimentalConfig {
gzipSize?: boolean
craCompat?: boolean
esmExternals?: boolean | 'loose'
/**
* In-memory cache size in bytes.
*
* If `isrMemoryCacheSize: 0` disables in-memory caching.
*/
isrMemoryCacheSize?: number
fullySpecified?: boolean
urlImports?: NonNullable<webpack.Configuration['experiments']>['buildHttp']
Expand Down
29 changes: 14 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 74131dc

Please sign in to comment.