Hey, I'm giving this plugin a spin and found that clicking on a Term always tries to go to /docs/terms/${termId}, which unfortunately doesn't exist for me, since I've got my baseUrl set to / in my docusaurus config. The correct path for my config would be /terms/${termId} instead.
It would be great if this plugin could take the baseUrl into account when generating link targets. In the meantime, I can sprinkle some post-processing regex hacks on the output in a build script, but that seems a little sketchy 😄.
Hey, I'm giving this plugin a spin and found that clicking on a
Term
always tries to go to/docs/terms/${termId}
, which unfortunately doesn't exist for me, since I've got mybaseUrl
set to/
in my docusaurus config. The correct path for my config would be/terms/${termId}
instead.It would be great if this plugin could take the
baseUrl
into account when generating link targets. In the meantime, I can sprinkle some post-processing regex hacks on the output in a build script, but that seems a little sketchy 😄.