app
文件夹内的任何文件都可以导入到你的模块中。Remix 将会:
它最常用于样式表,但也可以用于任何具有 已定义加载器的文件类型。
import type { LinksFunction } from "@remix-run/node"; // or cloudflare/deno
import banner from "./images/banner.jpg";
import styles from "./styles/app.css";
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: styles },
];
export default function Page() {
return (
<div>
<h1>Some Page</h1>
<img src={banner} />
</div>
);
}