'Issues with linking to source using JSDoc

I have enabled outputSourceFiles in my config and links are showing up... but when the link is clicked, no source code appears. Any thoughts on how I might resolve this?

{
    "tags": {
        "allowUnknownTags": true
    },
    "source": {
        "include": ["/source/accc-self-service-integrations/layers/shared-services/nodejs/"],
        "includePattern": ".+\\.js(doc|x)?$",
        "excludePattern": "(^|\\/|\\\\)_"
    },
    "plugins": ["plugins/markdown"],
    "recurseDepth": 1,
    "templates": {
        "cleverLinks": false,
        "monospaceLinks": false,
        "outputSourceFiles": true,
        "default": {
            "outputSourceFiles": true
        }
    },
    "opts": {
      "access": "all",
      "template": "/jsdoc/node_modules/classy-template",
      "recurse": false
    }
}

hyperlink for source code

source code display



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source