Init NextJS app
This commit is contained in:
parent
ceed5206ba
commit
16b48b3ead
17 changed files with 6000 additions and 0 deletions
13
leaky-ships/pages/_document.tsx
Normal file
13
leaky-ships/pages/_document.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { Html, Head, Main, NextScript } from 'next/document'
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Head />
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue