mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 16:38:15 -06:00
451581d50a
This was used by chat's HTML documentation experiment. That documentation experiment isn't being actively used/updated, but may be revisited in future. Therefore, this commit updates the jsdoc config to remove the custom theme, but keeps it functional (with the default jsdoc theme).
20 lines
352 B
Plaintext
20 lines
352 B
Plaintext
// jsdoc doesn't accept paths starting with _ (which is the case on github runners)
|
|
// so we need to alter the default config
|
|
{
|
|
"source": {
|
|
"excludePattern": ""
|
|
},
|
|
"templates": {
|
|
"default": {
|
|
"includeDate": false
|
|
}
|
|
},
|
|
"opts": {
|
|
"encoding": "utf8",
|
|
"recurse": true
|
|
},
|
|
"metadata": {
|
|
"title": "Discourse"
|
|
}
|
|
}
|