Aldehyde Outage (January 23誠鉉)
Multiple issues are combined.
Docusaurus 2.3.0 useSyncExternalStore Bug
Using Tabs will break with React 18 and Docusaurus v2.3 · Issue #8592 · facebook/docusaurus
Vercel and Cloudflare Build Errors
On Cloudflare's side:
16:49:17.136 ✔ Server: Compiled successfully in 3.74m16:50:22.579 Segmentation fault16:50:22.595 Failed: build command exited with code: 13916:50:23.859 Failed: an internal error occurredOn Vercel's Side:
[success] [webpackbar] Server: Compiled successfully in 3.49mError: Command "yarn run build" exited with 129Why..? I changed no config

2023-01-29
Investigating RAM Options. Supported a ticket to Cloudflare
--max-old-space-size=4096Did not help.
OH FIGURED IT OUT. It was because of insufficient RAM. When Docusaurus seals the assets (at the end of the build cycle), the RAM usage spikes to ~4.5 GB.

Configuring Cloudflare Pages and Vercel with the following argument fixed the problem!
--max-old-space-size=8192-- Nope. Did not solve the problem.

So I ended up using Cloudflare Wrangler to build on my device and then sending the build result to Cloudflare. Anyways, the issue seems to be resolved.