您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

layout.tsx 235B

123456789
  1. import type React from 'react'
  2. import { notFound } from 'next/navigation'
  3. export default async function Layout({ children }: React.PropsWithChildren) {
  4. if (process.env.NODE_ENV !== 'development')
  5. notFound()
  6. return children
  7. }