Editing the head.js File
- 07 Apr 2022
- 1 Minute to read
Editing the head.js File
- Updated on 07 Apr 2022
- 1 Minute to read
Article Summary
Share feedback
Thanks for sharing your feedback!
The head.js file lets you add one or more header tags to include in the <head>
of every page on the Members Portal.
The type attribute can be "script", "meta" or "link". All other properties in each object in the array will be converted into attributes of the <head>
tag.
This file must always use a single JavaScript array.
[
{
"type": "script",
"src": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment.min.js",
},
{
"type": "meta",
"name": "nx-header",
"content": "dummy",
}
]
This will result in two header tags being added to every page of your portal.
Was this article helpful?