Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[version-4-2] docs: docusaurus v3.6.1 (#4693) #4699

Merged
merged 2 commits into from
Nov 13, 2024
Merged
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: 1 addition & 1 deletion docs/docs-content/troubleshooting/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ event stream is a good source for identifying issues in the event an operation d

Due to Spectro Cloud’s reconciliation logic, intermittent errors show up in the event stream. As an example, after
launching a node, errors might show up in the event stream regarding being unable to reach the node. However, the errors
clear up once the node comes up.<p></p> Error messages that persist over a long time or errors indicating issues with
clear up once the node comes up. Error messages that persist over a long time or errors indicating issues with
underlying infrastructure are an indication of a real problem.

:::
Expand Down
13 changes: 12 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@ const config = {
defaultLocale: "en",
locales: ["en"],
},
future: {
experimental_faster: {
swcJsLoader: false,
// Set to 'false' as Netlify builds fail with this enabled.
swcJsMinimizer: true,
swcHtmlMinimizer: true,
lightningCssMinimizer: true,
rspackBundler: true,
mdxCrossCompilerCache: true,
},
},
customFields: {
// Used to access the environment variable in the build process during the client-side step
DISABLE_PACKS_INTEGRATIONS: process.env.DISABLE_PACKS_INTEGRATIONS,
Expand Down Expand Up @@ -339,7 +350,7 @@ const config = {
{
highlight: "bash",
language: "curl",
logoClass: "bash",
logoClass: "curl",
},
{
highlight: "python",
Expand Down
3 changes: 1 addition & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[build]
ignore = "./scripts/netlify.sh"
command = "npm run build"

command = "npm run build"
Loading