Skip to content

Commit

Permalink
update support (in docs and eslint) for incrementalCacheHandlerPath
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz committed Jan 2, 2024
1 parent 78ee756 commit 859f576
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const configs: Config[] = [
{ name: 'headers', support: '✅' },
{ name: 'httpAgentOptions', support: 'N/A' },
{ name: 'images', support: '✅' },
{ name: 'incrementalCacheHandlerPath', support: '🔄' },
{ name: 'incrementalCacheHandlerPath', support: '' },
{ name: 'logging', support: 'N/A' },
{ name: 'experimental/mdxRs', support: '✅' },
{ name: 'onDemandEntries', support: 'N/A' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ describe('no-unsupported-configs', () => {
/** @type {import('next').NextConfig} */
const nextConfig = {
assetPrefix: 'test',
incrementalCacheHandlerPath: true,
generateEtags: true,
}
module.exports = nextConfig
Expand All @@ -225,7 +225,7 @@ describe('no-unsupported-configs', () => {
},
{
message:
'The "incrementalCacheHandlerPath" configuration is not currently supported by next-on-pages.',
'The "generateEtags" configuration is not currently supported by next-on-pages.',
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion packages/next-on-pages/docs/supported.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ To check the latest state of the routers and possible missing features you can c
| headers | [pages](https://nextjs.org/docs/pages/api-reference/next-config-js/headers), [app](https://nextjs.org/docs/app/api-reference/next-config-js/headers) ||
| httpAgentOptions | [pages](https://nextjs.org/docs/pages/api-reference/next-config-js/httpAgentOptions), [app](https://nextjs.org/docs/app/api-reference/next-config-js/httpAgentOptions) | `N/A` |
| images | [pages](https://nextjs.org/docs/pages/api-reference/next-config-js/images), [app](https://nextjs.org/docs/app/api-reference/next-config-js/images) ||
| incrementalCacheHandlerPath | [app](https://nextjs.org/docs/app/api-reference/next-config-js/incrementalCacheHandlerPath) | 🔄 |
| incrementalCacheHandlerPath | [app](https://nextjs.org/docs/app/api-reference/next-config-js/incrementalCacheHandlerPath) | |
| logging | [app](https://nextjs.org/docs/app/api-reference/next-config-js/logging) | `N/A`<sup>5</sup> |
| mdxRs | [app](https://nextjs.org/docs/app/api-reference/next-config-js/mdxRs) ||
| onDemandEntries | [pages](https://nextjs.org/docs/pages/api-reference/next-config-js/onDemandEntries), [app](https://nextjs.org/docs/app/api-reference/next-config-js/onDemandEntries) | `N/A`<sup>6</sup> |
Expand Down

0 comments on commit 859f576

Please sign in to comment.