Spaces:
Runtime error
Runtime error
Upload pages/_document.js with huggingface_hub
Browse files- pages/_document.js +15 -0
pages/_document.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { Html, Head, Main, NextScript } from 'next/document';
|
| 2 |
+
|
| 3 |
+
export default function Document() {
|
| 4 |
+
return (
|
| 5 |
+
<Html lang="en">
|
| 6 |
+
<Head>
|
| 7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
| 8 |
+
</Head>
|
| 9 |
+
<body>
|
| 10 |
+
<Main />
|
| 11 |
+
<NextScript />
|
| 12 |
+
</body>
|
| 13 |
+
</Html>
|
| 14 |
+
);
|
| 15 |
+
}
|