Custom links - Configuration

How to manage custom links into the primary navigation

2025-05-23

ITADS

Available into settings.json, the customLinks object is an array that sets up the personal link to place into the header of the primary navigation. It looks like as follows

An example of settings.json with custom links:

{
    "customLinks": [
        {
            "url": "https://github.com/my-github-repo",
            "text": "GitHub"
        },
        {
            "url": "https://codepen.io/myname",
            "text": "CodePen"
        },
        {
            "url": "https://linkedin.com/myprofilename",
            "text": "LinkedIn"
        }
    ]
}