next.js/test/e2e/app-dir/refresh/app/refresh-invalid-render/page.tsx
page.tsx10 lines192 B
import { connection } from 'next/server'
import { refresh } from 'next/cache'

export default async function Page() {
  await connection()
  refresh()

  return <div>This should error</div>
}
Quest for Codev2.0.0
/
SIGN IN