Skip to content

Commit 63070da

Browse files
feat: allow skipping of middleware handling (#1277)
* feat: allow skipping of middleware handling * chore: assign config env to process.env Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 5415f9b commit 63070da

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/helpers/files.ts

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ export const matchesRewrite = (file: string, rewrites: Rewrites): boolean => {
6060
}
6161

6262
export const getMiddleware = async (publish: string): Promise<Array<string>> => {
63+
if (process.env.NEXT_SKIP_MIDDLEWARE) {
64+
return []
65+
}
6366
const manifestPath = join(publish, 'server', 'middleware-manifest.json')
6467
if (existsSync(manifestPath)) {
6568
const manifest = await readJson(manifestPath, { throws: false })

src/templates/getHandler.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ const makeHandler = (conf: NextConfig, app, pageRoot, staticManifest: Array<[str
4848
// This is our flag that we use when patching the source
4949
// eslint-disable-next-line no-underscore-dangle
5050
process.env._BYPASS_SSG = 'true'
51-
51+
for (const [key, value] of Object.entries(conf.env)) {
52+
process.env[key] = String(value)
53+
}
5254
// Set during the request as it needs the host header. Hoisted so we can define the function once
5355
let base: string
5456

0 commit comments

Comments
 (0)