Skip to content

Commit 12f5963

Browse files
authored
Merge branch 'main' into chore/next-js-e2e-tests-patch-update
2 parents c628e2f + cef75c8 commit 12f5963

File tree

37 files changed

+43
-0
lines changed

37 files changed

+43
-0
lines changed

tests/fixtures/advanced-api-routes/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const nextConfig = {
55
ignoreDuringBuilds: true,
66
},
77
generateBuildId: () => 'build-id',
8+
outputFileTracingRoot: __dirname,
89
}
910

1011
module.exports = nextConfig

tests/fixtures/after/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const nextConfig = {
44
eslint: {
55
ignoreDuringBuilds: true,
66
},
7+
outputFileTracingRoot: __dirname,
78
}
89

910
module.exports = nextConfig

tests/fixtures/base-path/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const nextConfig = {
55
eslint: {
66
ignoreDuringBuilds: true,
77
},
8+
outputFileTracingRoot: __dirname,
89
}
910

1011
module.exports = nextConfig

tests/fixtures/cli-before-regional-blobs-support/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const nextConfig = {
33
eslint: {
44
ignoreDuringBuilds: true,
55
},
6+
outputFileTracingRoot: __dirname,
67
}
78

89
module.exports = nextConfig

tests/fixtures/dist-dir/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const nextConfig = {
55
eslint: {
66
ignoreDuringBuilds: true,
77
},
8+
outputFileTracingRoot: __dirname,
89
}
910

1011
module.exports = nextConfig

tests/fixtures/dynamic-cms/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const nextConfig = {
99
defaultLocale: 'en',
1010
},
1111
generateBuildId: () => 'build-id',
12+
outputFileTracingRoot: __dirname,
1213
}
1314

1415
module.exports = nextConfig

tests/fixtures/hello-world-turbopack/next.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const nextConfig = {
44
eslint: {
55
ignoreDuringBuilds: true,
66
},
7+
outputFileTracingRoot: __dirname,
78
}
89

910
module.exports = nextConfig

tests/fixtures/middleware-conditions/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const nextConfig = {
88
eslint: {
99
ignoreDuringBuilds: true,
1010
},
11+
outputFileTracingRoot: __dirname,
1112
}
1213

1314
module.exports = nextConfig

tests/fixtures/middleware-i18n-excluded-paths/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ module.exports = {
77
locales: ['en', 'fr'],
88
defaultLocale: 'en',
99
},
10+
outputFileTracingRoot: __dirname,
1011
}

tests/fixtures/middleware-i18n-skip-normalize/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ module.exports = {
2121
},
2222
]
2323
},
24+
outputFileTracingRoot: __dirname,
2425
}

0 commit comments

Comments
 (0)