Skip to content

v0.9.0

Compare
Choose a tag to compare
@schultek schultek released this 10 Sep 21:29
· 888 commits to main since this release

Static Site Generation Release 🎉

This release adds support for static site generation in Jaspr.

The docs are updated to introduce this feature here and here

Changelog

jaspr @ 0.9.0

  • Added Static Site Generation support.

    With the new jaspr generate command you can generate static pages from your jaspr app. This requires a normal
    server-rendered jaspr app and will output separate .html pages for each of your routes.

    To specify which routes your application should handle, either use jaspr_router or call
    ServerApp.requestRouteGeneration('/my/route'); for each target route.

jaspr_router @ 0.3.0

  • Added Static Site Generation support. Pages are automatically generated for each route.

  • Fixed bug where Router.of(context).matchList.title always returned null.