Proofline keeps the private admin web surface server-rendered and embedded in the Go binary. Tailwind is only a local maintainer build tool for the checked-in admin CSS; the server runtime does not require Node, npm, Vite, React, or a public asset pipeline.
tailwind.admin.config.jsdefines the private admin Tailwind content paths and Proofline admin design tokens.internal/httpapi/web/admin/tailwind.cssis the Tailwind input source for reusable admin layout, card, navigation, form, notice, warning, badge, and action-group patterns.internal/httpapi/web/admin/static/styles.cssis the generated CSS embedded byinternal/httpapi/admin_web.goand served only from/admin/static/...on the private-admin listener.
Regenerate the checked-in admin CSS from the repository root with:
npx --yes tailwindcss@3.4.17 -c tailwind.admin.config.js -i internal/httpapi/web/admin/tailwind.css -o internal/httpapi/web/admin/static/styles.css --minifyDo not add a repo-local package.json, Vite app, React app, Catalyst source
copy, or server runtime dependency for this build path. Review the generated CSS
before committing it.