Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
matthoffner
/
web-llm-embed
like
10
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c79b0f3
web-llm-embed
/
src
/
pages
/
_document.tsx
matt HOFFNER
barebones next
0e0987b
almost 2 years ago
raw
Copy download link
history
blame
Safe
231 Bytes
import
{
Html
,
Head
,
Main
,
NextScript
}
from
'next/document'
export
default
function
Document
(
) {
return
(
<
Html
lang
=
"en"
>
<
Head
/>
<
body
>
<
Main
/>
<
NextScript
/>
</
body
>
</
Html
>
)
}