Skip to content

Commit c9d589b

Browse files
committed
Merge branch 'main' into ep/support-custom-response-headers-on-images
2 parents 5c6068d + b90bf3e commit c9d589b

File tree

4 files changed

+39
-22
lines changed

4 files changed

+39
-22
lines changed

package-lock.json

+37-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@babel/preset-env": "^7.15.8",
4848
"@babel/preset-typescript": "^7.16.0",
4949
"@delucis/if-env": "^1.1.2",
50-
"@netlify/build": "^27.11.1",
50+
"@netlify/build": "^27.11.2",
5151
"@netlify/eslint-config-node": "^7.0.0",
5252
"@testing-library/cypress": "^8.0.1",
5353
"@types/fs-extra": "^9.0.13",

plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"devDependencies": {
4242
"@delucis/if-env": "^1.1.2",
43-
"@netlify/build": "^27.11.1",
43+
"@netlify/build": "^27.11.2",
4444
"@types/fs-extra": "^9.0.13",
4545
"@types/jest": "^27.4.1",
4646
"@types/node": "^17.0.25",

plugin/src/templates/edge/runtime.ts

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ globalThis.NFRequestContextMap ||= new Map()
4646

4747
const handler = async (req: Request, context: Context) => {
4848
const url = new URL(req.url)
49-
if (url.pathname.startsWith('/_next/static/')) {
50-
return
51-
}
5249

5350
const geo = {
5451
country: context.geo.country?.code,

0 commit comments

Comments
 (0)