mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
d3c59a1147
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
13 lines
223 B
JavaScript
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>
|
|
)
|
|
}
|