mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
5217e7eb06
see https://github.com/vercel/next.js/pull/52997 also added a fix by @jridgewell to fix turbopack Co-authored-by: Justin Ridgewell <112982+jridgewell@users.noreply.github.com>
8 lines
128 B
JavaScript
8 lines
128 B
JavaScript
import React from 'react'
|
|
|
|
export default function Page() {
|
|
return <h1>My Page</h1>
|
|
}
|
|
|
|
export const dynamic = 'force-dynamic'
|