0

I want to change the logo in DocFX which appears on the top left.

I have replaced instances of logo.svg with my own logo.svg

In docfx.json, the directory includes my logo:

"resource": [
      {
        "files": [
          "images/**"
        ]
      }
    ],

this is my template setup:

"template": [
      "default",
      "templates/singulinkfx"
    ],

Anyone know how I can resolve my issue?

Sienna
  • 83
  • 8

1 Answers1

0

Try adding this in docfx.json in the globalMetadata section:

{
  "build": {
    "globalMetadata": {
      "_appLogoPath": "images/logo.svg"
    }
  }
}
hcdocs
  • 1,078
  • 2
  • 18
  • 30