• feat: add Static and StaticFS helpers for serving static files

    ryan released this 2026-02-06 23:22:00 +00:00 | 43 commits to main since this release

    One-liner static file serving: v.Static("/assets/", "./public") for
    filesystem directories and v.StaticFS("/assets/", fsys) for embed.FS.
    Both auto-normalize the URL prefix and disable directory listings.

    Downloads