/* eslint-disable react/no-danger */ import { Html, Head, Main, NextScript } from 'next/document'; import { readFileSync } from 'fs'; import { join } from 'path'; class InlineStylesHead extends Head { getCssLinks: Head['getCssLinks'] = ({ allFiles }) => { const { assetPrefix } = this.context; if (!allFiles || allFiles.length === 0) return null; return allFiles .filter((file: any) => /\.css$/.test(file)) .map((file: any) => (