We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f81baa commit 75d089cCopy full SHA for 75d089c
test/integration/auto-export-query-warn/pages/ssg.js
@@ -0,0 +1,11 @@
1
+const Page = () => "I'm SSRed"
2
+
3
+export async function getStaticProps() {
4
+ return {
5
+ props: {
6
+ hello: 'world',
7
+ },
8
+ }
9
+}
10
11
+export default Page
test/integration/auto-export-query-warn/test/index.test.js
@@ -18,6 +18,7 @@ const runTests = () => {
18
19
expect(stderr).not.toContain('/amp')
20
expect(stderr).not.toContain('/ssr')
21
+ expect(stderr).not.toContain('/ssg')
22
expect(stderr).not.toContain('/hello')
23
})
24
}
0 commit comments