Files
Shu Ding d3c59a1147 Fix failing test on canary branch (#49038)
Not sure when it was introduced (this was a warning before), but it's
failing on `canary` right now:
https://github.com/vercel/next.js/actions/runs/4851306015/jobs/8645117315
2023-05-01 15:23:14 +02:00

13 lines
223 B
JavaScript

export const revalidate = 0
export default function Root({ children }) {
return (
<html lang="en">
<head>
<title>switchable runtime</title>
</head>
<body>{children}</body>
</html>
)
}