React Router v7 已发布。 查看文档
资源导入

资源 URL 导入

app 文件夹内的任何文件都可以导入到你的模块中。Remix 将会:

  1. 将文件复制到你的浏览器构建目录
  2. 为长期缓存对文件进行指纹处理
  3. 返回公共 URL 给你的模块,以便在渲染时使用

它最常用于样式表,但也可以用于任何具有 已定义加载器的文件类型。

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>
  );
}
文档和示例根据以下许可 MIT