fix the base path, don't hard-code to the URL

6c4e8697af3c92e5d341b2820dba2bc4af593e89

Tucker McKnight | Thu Dec 04 2025

fix the base path, don't hard-code to the URL
js_templates/helpers/nav.ts:1
Before
1
  const reposPath = reposConfig.baseUrl
After
1
import path from 'path'
  const reposPath = reposConfig.path || ""