Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions tests/fixtures/advanced-api-routes/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
ignoreDuringBuilds: true,
},
generateBuildId: () => 'build-id',
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/after/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/base-path/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/dist-dir/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/dynamic-cms/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const nextConfig = {
defaultLocale: 'en',
},
generateBuildId: () => 'build-id',
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/hello-world-turbopack/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/middleware-conditions/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ module.exports = {
locales: ['en', 'fr'],
defaultLocale: 'en',
},
outputFileTracingRoot: __dirname,
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ module.exports = {
},
]
},
outputFileTracingRoot: __dirname,
}
1 change: 1 addition & 0 deletions tests/fixtures/middleware-i18n/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ module.exports = {
},
]
},
outputFileTracingRoot: __dirname,
}
1 change: 1 addition & 0 deletions tests/fixtures/middleware-og/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/middleware-pages/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,5 @@ module.exports = {
},
]
},
outputFileTracingRoot: __dirname,
}
1 change: 1 addition & 0 deletions tests/fixtures/middleware-src/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/middleware-subrequest-vuln/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/middleware-trailing-slash/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/middleware/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const nextConfig = {

return config
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/netlify-forms-workaround/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
ignoreDuringBuilds: true,
},
generateBuildId: () => 'build-id',
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/netlify-forms/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
ignoreDuringBuilds: true,
},
generateBuildId: () => 'build-id',
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const { join } = require('node:path')
const { composePlugins, withNx } = require('@nx/next')

/**
Expand All @@ -10,6 +11,7 @@ const nextConfig = {
// See: https://github.com/gregberge/svgr
svgr: false,
},
outputFileTracingRoot: join(__dirname, '..', '..'),
}

const plugins = [
Expand Down
2 changes: 2 additions & 0 deletions tests/fixtures/nx-integrated/apps/next-app/next.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const { join } = require('node:path')
const { composePlugins, withNx } = require('@nx/next')

/**
Expand All @@ -9,6 +10,7 @@ const nextConfig = {
// See: https://github.com/gregberge/svgr
svgr: false,
},
outputFileTracingRoot: join(__dirname, '..', '..'),
}

const plugins = [
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/output-export-custom-dist/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/output-export/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
ignoreDuringBuilds: true,
},
generateBuildId: () => 'build-id',
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/page-router-base-path-i18n/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const nextConfig = {
locales: ['en', 'fr', 'de'],
defaultLocale: 'en',
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/page-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
generateBuildId: () => 'build-id',
}

Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/pnpm/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/ppr/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const nextConfig = {
experimental: {
ppr: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/revalidate-fetch/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/server-components/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/simple/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const nextConfig = {
},
]
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const { join } = require('node:path')

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
eslint: {
ignoreDuringBuilds: true,
},
transpilePackages: ['@repo/ui'],
outputFileTracingRoot: join(__dirname, '..', '..'),
}

module.exports = nextConfig
3 changes: 3 additions & 0 deletions tests/fixtures/turborepo/apps/page-router/next.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const { join } = require('node:path')

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
eslint: {
ignoreDuringBuilds: true,
},
transpilePackages: ['@repo/ui'],
outputFileTracingRoot: join(__dirname, '..', '..'),
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/use-cache/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const nextConfig = {
},
},
},
outputFileTracingRoot: __dirname,
}

module.exports = nextConfig
1 change: 1 addition & 0 deletions tests/fixtures/wasm-src/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ module.exports = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}
1 change: 1 addition & 0 deletions tests/fixtures/wasm/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ module.exports = {
eslint: {
ignoreDuringBuilds: true,
},
outputFileTracingRoot: __dirname,
}
Loading