//! Serves the embedded SPA (built `web/dist`) at `/` with a client-side-routing //! fallback. Compiled only with the `embed-web` feature; in dev the SPA is served by //! Vite (which proxies `/api` to this server), so this module is absent. use axum::{Router, http::StatusCode}; /// A router that serves the embedded `web/dist` assets, falling back to `index.html` /// for unknown paths so the SPA can own client-side routes. pub(crate) fn routes() -> Router { memory_serve::load!() .index_file(Some("/index.html")) .fallback(Some("/index.html")) .fallback_status(StatusCode::OK) .into_router() }