Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
anzorq
/
hf-spaces-semantic-search
like
79
Runtime error
App
Files
Files
Community
2
2303c30
hf-spaces-semantic-search
/
pages
/
_document.js
anzorq
~working mvp
f817b5c
over 1 year 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
>
)
}