We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c03de commit 193c081Copy full SHA for 193c081
website/docusaurus.config.js
@@ -31,9 +31,7 @@ module.exports = {
31
projectName: 'apify-client-python',
32
scripts: ['/js/custom.js'],
33
favicon: 'img/favicon.ico',
34
- scripts: [
35
- ...config.scripts ?? [],
36
- ],
+ scripts: [...(config.scripts ?? [])],
37
onBrokenLinks:
38
/** @type {import('@docusaurus/types').ReportingSeverity} */ ('warn'),
39
onBrokenMarkdownLinks:
@@ -119,6 +117,6 @@ module.exports = {
119
117
},
120
118
staticDirectories: ['node_modules/@apify/docs-theme/static', 'static'],
121
customFields: {
122
- ...config.customFields ?? [],
+ ...(config.customFields ?? []),
123
124
};
0 commit comments