mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
21 lines
415 B
TypeScript
21 lines
415 B
TypeScript
/* eslint-disable @next/next/no-sync-scripts */
|
|
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="en" className="preload">
|
|
<Head />
|
|
<body>
|
|
<script src="/js/noflash.js?v1" />
|
|
<Main />
|
|
<NextScript />
|
|
<script src="/js/onload.js?v1" />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|