-
Notifications
You must be signed in to change notification settings - Fork 1
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
docusaurus 3.7 #122
base: main
Are you sure you want to change the base?
docusaurus 3.7 #122
Conversation
Currently the build is failing with:
|
Amplify deployment status
|
Building with |
@taraspos answering your comment here: facebook/docusaurus#10556 (comment) If it works with cc @hardfist It can be reproduced using latest Docusaurus canary using When disabling Docusaurus Faster options related to SWC, it still reproduces: const config: Config = {
future: {
v4: true,
experimental_faster: {
swcJsLoader: false,
swcJsMinimizer: false,
swcHtmlMinimizer: false,
lightningCssMinimizer: true,
rspackBundler: true,
mdxCrossCompilerCache: true,
ssgWorkerThreads: true,
},
},
} However, when disabling Rspack (using Webpack), it doesn't crash anymore. const config: Config = {
future: {
v4: true,
experimental_faster: {
swcJsLoader: true,
swcJsMinimizer: true,
swcHtmlMinimizer: true,
lightningCssMinimizer: true,
rspackBundler: false,
mdxCrossCompilerCache: true,
ssgWorkerThreads: true,
},
},
} However, we still get various errors:
Your repro is not really usable as is since the However, fixing the errors above does not fix the Rspack/SWC crash. Reverting to Rspack 1.1 fixes the bundling crash: "resolutions": {
"@rspack/core": "1.1.8"
}, |
@slorber, thanks for such a detailed response! |
The bug has been fixed in our deps, I guess it should work soon on our next release |
Thanks @slorber ! |
np 👍 Try Rspack 1.2.3, this might fix the problem (not sure): |
No description provided.