59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
import Document, { Head, Html, Main, NextScript } from 'next/document';
|
|
|
|
export default class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="ru" translate="no">
|
|
<Head>
|
|
<meta charSet="utf-8" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
rel="preconnect"
|
|
href="https://fonts.gstatic.com"
|
|
crossOrigin="true"
|
|
/>
|
|
<link
|
|
rel="preconnect"
|
|
href="https://cdnjs.cloudflare.com"
|
|
crossOrigin="true"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
|
|
/>
|
|
|
|
<link
|
|
rel="icon"
|
|
href={
|
|
process.env.NODE_ENV === 'production'
|
|
? 'favicon.prod.ico'
|
|
: 'favicon.ico'
|
|
}
|
|
crossOrigin="use-credentials"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0"
|
|
/>
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="description" content="Лизинговый калькулятор Эволюция" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
href="logo-100.png"
|
|
crossOrigin="use-credentials"
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|