Skip to content

Commit 0db86bb

Browse files
authored
doc: Fix SSR "source on GitHub" (#540)
* doc: Fix SSR "source on GitHub" * chore: Trying things * chore: Resolve * chore: Explicit include * chore: Glob * chore: Be explicit * chore: Revert other files
1 parent 1274cca commit 0db86bb

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ yarn-error.log
88
package-lock.json
99
.next/
1010
.turbo/
11+
.vercel

packages/docs/next.config.mjs

+10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ const withFumaMDX = createNextDocsMDX({
1111

1212
/** @type {import('next').NextConfig} */
1313
const config = {
14+
experimental: {
15+
outputFileTracingIncludes: {
16+
'/playground/pagination': [
17+
'./src/app/playground/(demos)/pagination/searchParams.ts',
18+
'./src/app/playground/(demos)/pagination/page.tsx',
19+
'./src/app/playground/(demos)/pagination/pagination-controls.server.tsx',
20+
'./src/app/playground/(demos)/pagination/pagination-controls.client.tsx'
21+
]
22+
}
23+
},
1424
reactStrictMode: true,
1525
redirects: async () => {
1626
return [

0 commit comments

Comments
 (0)