通常 React 构建只是作为来自 nginx 等网络服务器的静态文件提供,但我想使用来自 React 构建的 Rust Rocket 提供前端静态文件,我正在努力寻找一种好的方法,这里是我的路线已经设置
#[get("/")]
fn index() -> io::Result<NamedFile> {
NamedFile::open("build/index.html")
}
#[get("/<file..>", rank = 2)]
fn build_dir(file: PathBuf) -> Option<NamedFile> {
NamedFile::open(Path::new("build/").join(file)).ok()
}
#[get("/static/<file..>")]
fn static_dir(file: PathBuf) -> Option<NamedFile> {
NamedFile::open(Path::new("build/static/").join(file)).ok()
}
fn rocket() -> rocket::Rocket {
rocket::ignite()
.mount("/", routes![index, build_dir])
.mount("/static", routes![static_dir])
}
这可行,但它不提供像 favicons 或 manifest.json 文件这样的东西,我宁愿不为每个文件添加特定的路由,有没有人以更好的方式解决了这个问题?
请在此处查看项目代码