We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355dd04 commit ddfbe40Copy full SHA for ddfbe40
docusaurus.config.ts
@@ -3,6 +3,8 @@ import type * as Preset from '@docusaurus/preset-classic';
3
import type * as Plugin from "@docusaurus/types/src/plugin";
4
import type * as OpenApiPlugin from "docusaurus-plugin-openapi-docs";
5
6
+const isCI = process.env.CI === 'true';
7
+
8
const config: Config = {
9
title: 'OpenRemote Documentation',
10
tagline: 'The 100% Open Source IoT Platform for Manufacturers and Integrators',
@@ -42,7 +44,7 @@ const config: Config = {
42
44
rspackBundler: true,
43
45
rspackPersistentCache: true,
46
mdxCrossCompilerCache: true,
- ssgWorkerThreads: true,
47
+ ssgWorkerThreads: !isCI,
48
},
49
50
0 commit comments