@vercel/next 3.3.15 → 3.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2393 -1379
- package/dist/server-build.js +3 -1
- package/package.json +2 -2
package/dist/server-build.js
CHANGED
@@ -613,7 +613,9 @@ async function serverBuild({ dynamicPages, pagesDir, config = {}, privateOutputs
|
|
613
613
|
return isNextDataServerResolving
|
614
614
|
? [
|
615
615
|
{
|
616
|
-
src: path_1.default.posix.join('^/', entryDirectory
|
616
|
+
src: path_1.default.posix.join('^/', entryDirectory !== '.'
|
617
|
+
? `${entryDirectory}${trailingSlash ? '/$' : '$'}`
|
618
|
+
: '$'),
|
617
619
|
has: [
|
618
620
|
{
|
619
621
|
type: 'header',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/next",
|
3
|
-
"version": "3.3.
|
3
|
+
"version": "3.3.17",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index",
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",
|
@@ -71,5 +71,5 @@
|
|
71
71
|
"typescript": "4.5.2",
|
72
72
|
"webpack-sources": "3.2.3"
|
73
73
|
},
|
74
|
-
"gitHead": "
|
74
|
+
"gitHead": "e174a06673de32a4d0db58e9f6343db5d476e7d0"
|
75
75
|
}
|