Skip to content

Commit d0fb79c

Browse files
committed
feat: support for basePath
1 parent cfaa517 commit d0fb79c

File tree

10 files changed

+960
-7
lines changed

10 files changed

+960
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
target: "experimental-serverless-trace",
3+
basePath: "/foo",
4+
};

src/cypress/fixtures/pages/getServerSideProps/[id].js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Show = ({ errorCode, show }) => {
1111
return (
1212
<div>
1313
<p>
14-
This page uses getInitialProps() to fetch the show with the ID provided in the URL: /shows/:id
14+
This page uses getServerSideProps() to fetch the show with the ID provided in the URL: /shows/:id
1515
<br />
1616
Refresh the page to see server-side rendering in action.
1717
<br />

src/cypress/fixtures/pages/getServerSideProps/static.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Link from 'next/link'
33
const Show = ({ show }) => (
44
<div>
55
<p>
6-
This page uses getInitialProps() to fetch the show with the ID provided in the URL: /shows/:id
6+
This page uses getServerSideProps() to fetch the show with the ID provided in the URL: /shows/:id
77
<br />
88
Refresh the page to see server-side rendering in action.
99
<br />

0 commit comments

Comments
 (0)