Problem
The Deploy Documentation workflow fails on main after commit ce8f18f (PR #156).
Build error:
Could not resolve "../../../functions/api/utils" from
"docs/.vitepress/theme/components/BugReportWidget.vue"
Root Cause
PR #156 removed docs/functions/api/utils.ts as dead code (API logic moved to CF Worker), but BugReportWidget.vue still imports CATEGORIES and MIN_DESCRIPTION_LENGTH from the deleted file.
Fix
Define the constants directly in the component instead of importing from the deleted module.