Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

.idea

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Expand Down
6 changes: 6 additions & 0 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ const actualBaseUrl = process.env.DOCUSAURUS_BASEURL ??
// ----------------------------------------------------------------------------

const config: Config = {
future: {
v4: true,
experimental_faster: true,
},

title: 'µTest++ Testing Framework' +
((process.env.DOCUSAURUS_IS_PREVIEW === 'true') ? ' (preview)' : ''),
tagline: 'A C++ source code library with a lightweight testing framework for embedded systems',
Expand Down Expand Up @@ -63,6 +68,7 @@ const config: Config = {
},

plugins: [
['@docusaurus/plugin-svgr',{}],

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately this is needed in your case since you don't use the plugin 😅

facebook/docusaurus#10677

I thought it wouldn't affect anyone, but apparently I'm wrong. By chance it's easy to fix and restore the former behavior.

[
'@docusaurus/plugin-content-docs',
{
Expand Down
Loading