Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update nextjs project to have more realistic controls #1151

Merged
merged 23 commits into from
Apr 24, 2024
Merged
Prev Previous commit
Next Next commit
Fix
benjackwhite committed Apr 24, 2024
commit 92310b441c992734c19ad88e3b78288ce9bfc06b
4 changes: 3 additions & 1 deletion playground/nextjs/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Html, Main, NextScript } from 'next/document'
import { Html, Head, Main, NextScript } from 'next/document'
import React from 'react'

export default function Document() {
return (
<Html lang="en">
<Head />

<body>
<Main />
</body>