blob: ceef37e765ec5af7a5d29b272d41fc4d08f70c51 (
plain)
1
2
3
4
5
6
7
8
|
import type { LinksFunction } from "@remix-run/node";
import normalizeCss from "sakura.css/css/normalize.css?url";
import sakuraCss from "sakura.css/css/sakura.css?url";
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: normalizeCss },
{ rel: "stylesheet", href: sakuraCss },
];
|