import type { LinksFunction } from "@remix-run/cloudflare"; import { cssBundleHref } from "@remix-run/css-bundle"; import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import * as styles from "./root.css"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: "https://unpkg.com/modern-css-reset@1.4.0/dist/reset.min.css", }, ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []), ]; export default function App() { return ( ); }