Open8

remix

いもけんいもけん

https://remix.run/docs/en/main/start/tutorial#the-root-route

import type { LinksFunction } from "@remix-run/node";
// existing imports

import appStylesHref from "./app.css";

export const links: LinksFunction = () => [
  { rel: "stylesheet", href: appStylesHref },
];

全てのルートはlinks関数をエクスポートできる
app/root.tsxでレンダリングした<Links />コンポーネントにレンダリングされる