import { Html, Head, Main, NextScript } from "next/document"; import * as config from "../lib/config"; // https://nextjs.org/docs/advanced-features/custom-document const Document = () => { return ( {/* kinda a hack to prevent dramatically fading into dark theme if we're immediately setting it on load. */} {/* removed by `` once the page is completely finished loading. */}
); }; export default Document;