Actix Web service for hosting statically exported Next.js apps.
This is a fork of Spa service from actix-web-lab with added support for Next.js dynamic routes.
It searches for Next.js's _buildManifest.js
and builds a tree of routes from it. Request to, e.g., /pet/dog/husky
resolves into /pet/[petType]/[breed].html
.
Exactly the same as original SPA service:
rust
use actix_web::App;
use actix_web_nextjs_spa::spa;
let app = App::new()
// ...api routes...
.service(
spa()
.index_file("./web/spa.html")
.static_resources_location("./web")
.finish()
);
This project is licensed under either of the following licenses, at your option: