Skip to content

Commit 5354005

Browse files
committed
Merge branch 'main' into mk/background-functions
2 parents 8305373 + d8c69bd commit 5354005

File tree

7 files changed

+461
-504
lines changed

7 files changed

+461
-504
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"packages/runtime": "4.24.2",
2+
"packages/runtime": "4.24.3",
33
"packages/next": "1.3.1"
44
}

demos/turborepo-next-monorepo-demo/package-lock.json

Lines changed: 138 additions & 206 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 312 additions & 295 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/runtime/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [4.24.3](https://github.com/netlify/next-runtime/compare/plugin-nextjs-v4.24.2...plugin-nextjs-v4.24.3) (2022-10-06)
4+
5+
6+
### Bug Fixes
7+
8+
* remove localPrefix ([#1665](https://github.com/netlify/next-runtime/issues/1665)) ([571c0f5](https://github.com/netlify/next-runtime/commit/571c0f5254ffc62526f2a46d1d93d604bdd828b7))
9+
310
## [4.24.2](https://github.com/netlify/next-runtime/compare/plugin-nextjs-v4.24.1...plugin-nextjs-v4.24.2) (2022-10-05)
411

512

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netlify/plugin-nextjs",
3-
"version": "4.24.2",
3+
"version": "4.24.3",
44
"description": "Run Next.js seamlessly on Netlify",
55
"main": "lib/index.js",
66
"files": [

packages/runtime/src/helpers/edge.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ export interface FunctionManifest {
4343
functions: Array<
4444
| {
4545
function: string
46+
name?: string
4647
path: string
4748
}
4849
| {
4950
function: string
51+
name?: string
5052
pattern: string
5153
}
5254
>

packages/runtime/src/templates/ipx.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export const handler: Handler = createIPXHandler({
1010
domains,
1111
remotePatterns,
1212
responseHeaders,
13-
localPrefix: '/_next/static/media/',
1413
}) as Handler
1514
/* eslint-enable n/no-missing-import, import/no-unresolved, @typescript-eslint/ban-ts-comment */

0 commit comments

Comments
 (0)