Skip to content

Conversation

@slorber
Copy link
Collaborator

@slorber slorber commented Apr 18, 2025

Motivation

The Rspack persistent cache was enabled in Docusaurus with #10931

Unfortunately, the performance improvement wasn't significant because code-generated files would always recompile/reload, even if their content/hash didn't change.

After our feedback in web-infra-dev/rspack#9413, with v1.3.6, Rspack is changing its default strategy for the persistent cache, using a file content hash instead of the filesystem lastModified time.

This PR significantly improves the efficiency of the Rspack persistent cache, so that warm rebuilds will bundle the app faster, by avoiding recompiling all the code-generated files.

Many code-generated files are generated by Docusaurus core in website/.docusaurus, but they can also be generated by plugins that generate MDX files (often the case of docsgen plugin like OpenAPI).

This upgrade affects the speed of both the dev server and the production build.

On our own website, we use a custom changelog plugin which is a fork of the blog plugin that does MDX codegen. We can see that it's now faster on prod builds, and the persistent cache also significantly improve the startup time of the dev server (on 2nd startups).

Benchmarks

Impact of the persistent cache on total build times:

  • Small site: 15.8s -> 9.3s (previously 10.4s)
  • Medium site: 37.4s -> 24.9s (previously 29.7s)

Note:

  • Those numbers represent the impact on the average build time, and not just the bundling phase
  • The bundling phase is likely to be at least x2-x3 faster with the Rspack persistent cache enabled
  • Other Docusaurus phases (such as the SSG phase, which happens just after bundling) are also expensive to run.
  • The persistent cache of Rspack is still in active development and will keep improving in the future (see https://rspack.dev/blog/announcing-1-2#persistent-cache)

Cold build

Small site

yarn clear:website
hyperfine --runs 5 'DOCUSAURUS_NO_PERSISTENT_CACHE=true yarn build:website:fast'

Benchmark 1: DOCUSAURUS_NO_PERSISTENT_CACHE=true yarn build:website:fast
  Time (mean ± σ):     15.878 s ±  1.077 s    [User: 49.951 s, System: 8.975 s]
  Range (min … max):   14.507 s … 17.140 s    5 runs

Medium site

yarn clear:website
hyperfine --runs 5 'DOCUSAURUS_NO_PERSISTENT_CACHE=true yarn build:website --locale en'

Benchmark 1: DOCUSAURUS_NO_PERSISTENT_CACHE=true yarn build:website --locale en
  Time (mean ± σ):     37.432 s ±  1.609 s    [User: 130.666 s, System: 20.958 s]
  Range (min … max):   34.742 s … 38.823 s    5 runs

Warm build - before upgrading

Small site

yarn clear:website
yarn build:website:fast
hyperfine --runs 5 'yarn build:website:fast'

Benchmark 1: yarn build:website:fast
  Time (mean ± σ):     10.442 s ±  0.878 s    [User: 33.773 s, System: 7.245 s]
  Range (min … max):    9.524 s … 11.599 s    5 runs

Medium site

yarn clear:website
yarn build:website --locale en
hyperfine --runs 5 'yarn build:website --locale en'

Benchmark 1: yarn build:website --locale en
  Time (mean ± σ):     29.721 s ±  2.407 s    [User: 103.784 s, System: 19.332 s]
  Range (min … max):   27.340 s … 33.297 s    5 runs

Warm build - after upgrading

Small site

yarn clear:website
yarn build:website:fast
hyperfine --runs 5 'yarn build:website:fast'

Benchmark 1: yarn build:website:fast
  Time (mean ± σ):      9.309 s ±  1.063 s    [User: 30.241 s, System: 7.210 s]
  Range (min … max):    7.975 s … 10.314 s    5 runs

Medium site

yarn clear:website
yarn build:website --locale en
hyperfine --runs 5 'yarn build:website --locale en'

Benchmark 1: yarn build:website --locale en
  Time (mean ± σ):     24.992 s ±  3.595 s    [User: 96.350 s, System: 19.542 s]
  Range (min … max):   22.522 s … 31.272 s    5 runs

Test Plan

Local benchmarks on my M3 computer:

It should also speed up CI rebuilds

Test links

https://deploy-preview-11114--docusaurus-2.netlify.app/

@slorber slorber requested a review from Josh-Cena as a code owner April 18, 2025 08:25
@facebook-github-bot facebook-github-bot added the CLA Signed Signed Facebook CLA label Apr 18, 2025
@slorber slorber added the pr: performance This PR does not add a new behavior, but existing behaviors will be more memory- / time-efficient. label Apr 18, 2025
@netlify
Copy link

netlify bot commented Apr 18, 2025

[V2]

Name Link
🔨 Latest commit 2d60654
🔍 Latest deploy log https://app.netlify.com/sites/docusaurus-2/deploys/68020c7a02af1d00089a6c08
😎 Deploy Preview https://deploy-preview-11114--docusaurus-2.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions
Copy link

Size Change: +356 B (0%)

Total Size: 11.3 MB

Filename Size Change
website/build/assets/js/runtime~main.********.js 36.9 kB +31 B (+0.08%)
ℹ️ View Unchanged
Filename Size Change
website/.docusaurus/codeTranslations.json 2 B 0 B
website/.docusaurus/docusaurus.config.mjs 28.4 kB 0 B
website/.docusaurus/globalData.json 31.9 kB 0 B
website/.docusaurus/i18n.json 930 B 0 B
website/.docusaurus/registry.js 162 kB 0 B
website/.docusaurus/routes.js 77.9 kB 0 B
website/.docusaurus/routesChunkNames.json 85.6 kB 0 B
website/.docusaurus/site-metadata.json 2.3 kB 0 B
website/build/assets/css/styles.********.css 126 kB 0 B
website/build/assets/js/main.********.js 793 kB 0 B
website/build/blog.html 75.5 kB 0 B
website/build/blog/2017/12/14/introducing-docusaurus.html 64.5 kB 0 B
website/build/blog/2018/04/30/How-I-Converted-Profilo-To-Docusaurus.html 44.2 kB +12 B (+0.03%)
website/build/blog/2018/09/11/Towards-Docusaurus-2.html 48.4 kB 0 B
website/build/blog/2018/12/14/Happy-First-Birthday-Slash.html 28.7 kB 0 B
website/build/blog/2019/12/30/docusaurus-2019-recap.html 39.2 kB -1 B (0%)
website/build/blog/2020/01/07/tribute-to-endi.html 32.2 kB 0 B
website/build/blog/2021/01/19/docusaurus-2020-recap.html 50 kB 0 B
website/build/blog/2021/03/09/releasing-docusaurus-i18n.html 46.4 kB -1 B (0%)
website/build/blog/2021/05/12/announcing-docusaurus-two-beta.html 47.2 kB 0 B
website/build/blog/2021/11/21/algolia-docsearch-migration.html 53.4 kB +12 B (+0.02%)
website/build/blog/2022/01/24/docusaurus-2021-recap.html 42.4 kB 0 B
website/build/blog/2022/08/01/announcing-docusaurus-2.0.html 130 kB 0 B
website/build/blog/2022/09/01/docusaurus-2.1.html 49.5 kB -1 B (0%)
website/build/blog/archive.html 23.2 kB 0 B
website/build/blog/authors.html 49.7 kB 0 B
website/build/blog/authors/j-marcey.html 69.3 kB 0 B
website/build/blog/authors/josh-cena.html 46.1 kB 0 B
website/build/blog/authors/lex-111.html 54.8 kB 0 B
website/build/blog/authors/slorber.html 78.9 kB 0 B
website/build/blog/authors/slorber/authors/2.html 82.4 kB 0 B
website/build/blog/authors/slorber/authors/3.html 89.7 kB 0 B
website/build/blog/authors/slorber/authors/4.html 76.4 kB 0 B
website/build/blog/authors/yangshun.html 65.2 kB 0 B
website/build/blog/authors/zpao.html 46.6 kB 0 B
website/build/blog/page/2.html 79.9 kB 0 B
website/build/blog/page/3.html 87.4 kB 0 B
website/build/blog/page/4.html 76.9 kB 0 B
website/build/blog/page/5.html 46.7 kB 0 B
website/build/blog/page/6.html 29.4 kB 0 B
website/build/blog/preparing-your-site-for-docusaurus-v3.html 124 kB +4 B (0%)
website/build/blog/releases/2.2.html 49.5 kB 0 B
website/build/blog/releases/2.3.html 59.8 kB 0 B
website/build/blog/releases/2.4.html 63.3 kB 0 B
website/build/blog/releases/3.0.html 104 kB +12 B (+0.01%)
website/build/blog/releases/3.1.html 52.5 kB +1 B (0%)
website/build/blog/releases/3.2.html 48.1 kB 0 B
website/build/blog/releases/3.3.html 55.3 kB 0 B
website/build/blog/releases/3.4.html 54.4 kB +7 B (+0.01%)
website/build/blog/releases/3.5.html 56.8 kB +1 B (0%)
website/build/blog/releases/3.6.html 74.7 kB +1 B (0%)
website/build/blog/releases/3.7.html 49.7 kB +1 B (0%)
website/build/blog/tags.html 26.8 kB 0 B
website/build/blog/upgrading-frontend-dependencies-with-confidence-using-visual-regression-testing.html 122 kB 0 B
website/build/docs.html 46.8 kB 0 B
website/build/docs/advanced.html 29 kB 0 B
website/build/docs/advanced/architecture.html 28.5 kB +4 B (+0.01%)
website/build/docs/advanced/client.html 67.5 kB 0 B
website/build/docs/advanced/plugins.html 52.9 kB 0 B
website/build/docs/advanced/routing.html 67.7 kB +8 B (+0.01%)
website/build/docs/advanced/ssg.html 72 kB 0 B
website/build/docs/api/docusaurus-config.html 182 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin.html 42.9 kB +4 B (+0.01%)
website/build/docs/api/misc/@docusaurus/eslint-plugin/no-html-links.html 34.5 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin/no-untranslated-text.html 33.5 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin/prefer-docusaurus-heading.html 34.8 kB +4 B (+0.01%)
website/build/docs/api/misc/@docusaurus/eslint-plugin/string-literal-i18n-messages.html 38.3 kB 0 B
website/build/docs/api/misc/@docusaurus/logger.html 37 kB 0 B
website/build/docs/api/misc/create-docusaurus.html 32.2 kB 0 B
website/build/docs/api/misc/docusaurus-init/index.html 361 B 0 B
website/build/docs/api/plugin-methods.html 63.2 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/extend-infrastructure.html 57.2 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/i18n-lifecycles.html 55.6 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/lifecycle-apis.html 157 kB 0 B
website/build/docs/api/plugin-methods/static-methods.html 43 kB +4 B (+0.01%)
website/build/docs/api/plugins.html 30.2 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-client-redirects.html 57 kB +13 B (+0.02%)
website/build/docs/api/plugins/@docusaurus/plugin-content-blog.html 180 kB +1 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-content-docs.html 186 kB +1 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-content-pages.html 71.4 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-debug.html 45.5 kB +12 B (+0.03%)
website/build/docs/api/plugins/@docusaurus/plugin-google-analytics.html 47 kB +3 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-google-gtag.html 46.5 kB -4 B (-0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-google-tag-manager.html 45.3 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-ideal-image.html 46.4 kB +4 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-pwa.html 113 kB +4 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-rsdoctor.html 38.2 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-sitemap.html 62.8 kB +6 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-svgr.html 43.2 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-vercel-analytics.html 38.5 kB +12 B (+0.03%)
website/build/docs/api/themes.html 28.4 kB 0 B
website/build/docs/api/themes/@docusaurus/theme-classic.html 41.6 kB +4 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-live-codeblock.html 34.9 kB +2 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-mermaid.html 33.7 kB +4 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-search-algolia.html 31.6 kB 0 B
website/build/docs/api/themes/configuration.html 245 kB 0 B
website/build/docs/blog.html 193 kB 0 B
website/build/docs/browser-support.html 45.3 kB 0 B
website/build/docs/category/getting-started.html 26.3 kB 0 B
website/build/docs/category/guides.html 34.1 kB 0 B
website/build/docs/cli.html 57.8 kB 0 B
website/build/docs/configuration.html 89.3 kB +7 B (+0.01%)
website/build/docs/create-doc.html 57 kB +12 B (+0.02%)
website/build/docs/creating-pages.html 54.4 kB +1 B (0%)
website/build/docs/deployment.html 186 kB +2 B (0%)
website/build/docs/docs-introduction.html 47.8 kB 0 B
website/build/docs/docs-multi-instance.html 70 kB +4 B (+0.01%)
website/build/docs/docusaurus-core.html 218 kB 0 B
website/build/docs/guides/whats-next.html 30.5 kB 0 B
website/build/docs/i18n/crowdin.html 133 kB +12 B (+0.01%)
website/build/docs/i18n/git.html 73.8 kB +4 B (+0.01%)
website/build/docs/i18n/introduction.html 46.2 kB 0 B
website/build/docs/i18n/tutorial.html 152 kB +13 B (+0.01%)
website/build/docs/installation.html 62.1 kB +5 B (+0.01%)
website/build/docs/introduction/index.html 280 B 0 B
website/build/docs/markdown-features.html 76.2 kB 0 B
website/build/docs/markdown-features/admonitions.html 106 kB +4 B (0%)
website/build/docs/markdown-features/assets.html 82.7 kB +2 B (0%)
website/build/docs/markdown-features/code-blocks.html 213 kB +10 B (0%)
website/build/docs/markdown-features/diagrams.html 49 kB +14 B (+0.03%)
website/build/docs/markdown-features/head-metadata.html 48 kB 0 B
website/build/docs/markdown-features/links.html 38.7 kB 0 B
website/build/docs/markdown-features/math-equations.html 85.9 kB +4 B (0%)
website/build/docs/markdown-features/plugins.html 91.5 kB +8 B (+0.01%)
website/build/docs/markdown-features/react.html 128 kB 0 B
website/build/docs/markdown-features/tabs.html 135 kB 0 B
website/build/docs/markdown-features/toc.html 79 kB +4 B (+0.01%)
website/build/docs/migration.html 37.3 kB +4 B (+0.01%)
website/build/docs/migration/v2.html 37.6 kB 0 B
website/build/docs/migration/v2/automated.html 38.1 kB 0 B
website/build/docs/migration/v2/manual.html 183 kB 0 B
website/build/docs/migration/v2/translated-sites.html 48.7 kB 0 B
website/build/docs/migration/v2/versioned-sites.html 57.8 kB +8 B (+0.01%)
website/build/docs/migration/v3.html 184 kB +2 B (0%)
website/build/docs/playground.html 30.3 kB 0 B
website/build/docs/resources/index.html 325 B 0 B
website/build/docs/search.html 109 kB +1 B (0%)
website/build/docs/seo.html 84.5 kB +13 B (+0.02%)
website/build/docs/sidebar.html 125 kB +7 B (+0.01%)
website/build/docs/sidebar/autogenerated.html 140 kB +13 B (+0.01%)
website/build/docs/sidebar/items.html 165 kB 0 B
website/build/docs/sidebar/multiple-sidebars.html 58.8 kB +4 B (+0.01%)
website/build/docs/static-assets.html 49.3 kB +4 B (+0.01%)
website/build/docs/styling-layout.html 131 kB +1 B (0%)
website/build/docs/support/index.html 319 B 0 B
website/build/docs/swizzling.html 107 kB +14 B (+0.01%)
website/build/docs/team/index.html 310 B 0 B
website/build/docs/typescript-support.html 58.2 kB +4 B (+0.01%)
website/build/docs/using-plugins.html 102 kB 0 B
website/build/docs/versioning.html 87.6 kB -2 B (0%)
website/build/index.html 35.2 kB 0 B

compressed-size-action::DOCUSAURUS_INFRA_FASTER

@github-actions
Copy link

⚡️ Lighthouse report for the deploy preview of this PR

URL Performance Accessibility Best Practices SEO Report
/ 🔴 42 🟢 98 🟢 100 🟢 100 Report
/docs/installation 🔴 49 🟢 97 🟢 100 🟢 100 Report
/docs/category/getting-started 🟠 72 🟢 100 🟢 100 🟠 86 Report
/blog 🟠 61 🟢 96 🟢 100 🟠 86 Report
/blog/preparing-your-site-for-docusaurus-v3 🔴 45 🟢 92 🟢 100 🟢 100 Report
/blog/tags/release 🟠 63 🟢 96 🟢 100 🟠 86 Report
/blog/tags 🟠 73 🟢 100 🟢 100 🟠 86 Report

@github-actions
Copy link

Size Change: +315 B (0%)

Total Size: 11.7 MB

ℹ️ View Unchanged
Filename Size Change
website/.docusaurus/codeTranslations.json 2 B 0 B
website/.docusaurus/docusaurus.config.mjs 28.4 kB 0 B
website/.docusaurus/globalData.json 31.9 kB 0 B
website/.docusaurus/i18n.json 930 B 0 B
website/.docusaurus/registry.js 162 kB 0 B
website/.docusaurus/routes.js 77.9 kB 0 B
website/.docusaurus/routesChunkNames.json 85.6 kB 0 B
website/.docusaurus/site-metadata.json 2.3 kB 0 B
website/build/assets/css/styles.********.css 120 kB 0 B
website/build/assets/js/main.********.js 797 kB 0 B
website/build/assets/js/runtime~main.********.js 36.5 kB 0 B
website/build/blog.html 78.3 kB 0 B
website/build/blog/2017/12/14/introducing-docusaurus.html 66.8 kB 0 B
website/build/blog/2018/04/30/How-I-Converted-Profilo-To-Docusaurus.html 46.2 kB +12 B (+0.03%)
website/build/blog/2018/09/11/Towards-Docusaurus-2.html 50.5 kB 0 B
website/build/blog/2018/12/14/Happy-First-Birthday-Slash.html 30.4 kB 0 B
website/build/blog/2019/12/30/docusaurus-2019-recap.html 41.2 kB -1 B (0%)
website/build/blog/2020/01/07/tribute-to-endi.html 33.9 kB 0 B
website/build/blog/2021/01/19/docusaurus-2020-recap.html 52.2 kB 0 B
website/build/blog/2021/03/09/releasing-docusaurus-i18n.html 48.5 kB -1 B (0%)
website/build/blog/2021/05/12/announcing-docusaurus-two-beta.html 49.3 kB 0 B
website/build/blog/2021/11/21/algolia-docsearch-migration.html 55.8 kB +12 B (+0.02%)
website/build/blog/2022/01/24/docusaurus-2021-recap.html 44.5 kB 0 B
website/build/blog/2022/08/01/announcing-docusaurus-2.0.html 135 kB 0 B
website/build/blog/2022/09/01/docusaurus-2.1.html 51.9 kB -1 B (0%)
website/build/blog/archive.html 24.6 kB 0 B
website/build/blog/authors.html 52 kB 0 B
website/build/blog/authors/j-marcey.html 72 kB 0 B
website/build/blog/authors/josh-cena.html 48.3 kB 0 B
website/build/blog/authors/lex-111.html 57.2 kB 0 B
website/build/blog/authors/slorber.html 81.9 kB 0 B
website/build/blog/authors/slorber/authors/2.html 85.5 kB 0 B
website/build/blog/authors/slorber/authors/3.html 93 kB 0 B
website/build/blog/authors/slorber/authors/4.html 79.3 kB 0 B
website/build/blog/authors/yangshun.html 67.9 kB 0 B
website/build/blog/authors/zpao.html 48.8 kB 0 B
website/build/blog/page/2.html 82.7 kB 0 B
website/build/blog/page/3.html 90.6 kB 0 B
website/build/blog/page/4.html 79.7 kB 0 B
website/build/blog/page/5.html 48.8 kB 0 B
website/build/blog/page/6.html 31.1 kB 0 B
website/build/blog/preparing-your-site-for-docusaurus-v3.html 129 kB -1 B (0%)
website/build/blog/releases/2.2.html 51.8 kB 0 B
website/build/blog/releases/2.3.html 62.4 kB 0 B
website/build/blog/releases/2.4.html 66.1 kB 0 B
website/build/blog/releases/3.0.html 108 kB +12 B (+0.01%)
website/build/blog/releases/3.1.html 54.8 kB +1 B (0%)
website/build/blog/releases/3.2.html 50.4 kB 0 B
website/build/blog/releases/3.3.html 57.7 kB 0 B
website/build/blog/releases/3.4.html 56.9 kB +7 B (+0.01%)
website/build/blog/releases/3.5.html 59.3 kB +1 B (0%)
website/build/blog/releases/3.6.html 77.8 kB +1 B (0%)
website/build/blog/releases/3.7.html 52.1 kB +1 B (0%)
website/build/blog/tags.html 28.6 kB 0 B
website/build/blog/upgrading-frontend-dependencies-with-confidence-using-visual-regression-testing.html 126 kB 0 B
website/build/docs.html 48.8 kB 0 B
website/build/docs/advanced.html 30.6 kB 0 B
website/build/docs/advanced/architecture.html 30.1 kB +4 B (+0.01%)
website/build/docs/advanced/client.html 70.3 kB 0 B
website/build/docs/advanced/plugins.html 55.2 kB 0 B
website/build/docs/advanced/routing.html 70.5 kB +8 B (+0.01%)
website/build/docs/advanced/ssg.html 75.2 kB 0 B
website/build/docs/api/docusaurus-config.html 190 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin.html 45.2 kB +4 B (+0.01%)
website/build/docs/api/misc/@docusaurus/eslint-plugin/no-html-links.html 36.4 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin/no-untranslated-text.html 35.3 kB 0 B
website/build/docs/api/misc/@docusaurus/eslint-plugin/prefer-docusaurus-heading.html 36.7 kB +4 B (+0.01%)
website/build/docs/api/misc/@docusaurus/eslint-plugin/string-literal-i18n-messages.html 40.3 kB 0 B
website/build/docs/api/misc/@docusaurus/logger.html 38.8 kB 0 B
website/build/docs/api/misc/create-docusaurus.html 33.8 kB 0 B
website/build/docs/api/misc/docusaurus-init/index.html 361 B 0 B
website/build/docs/api/plugin-methods.html 65.8 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/extend-infrastructure.html 59.7 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/i18n-lifecycles.html 57.9 kB +4 B (+0.01%)
website/build/docs/api/plugin-methods/lifecycle-apis.html 162 kB 0 B
website/build/docs/api/plugin-methods/static-methods.html 44.9 kB +4 B (+0.01%)
website/build/docs/api/plugins.html 31.9 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-client-redirects.html 59.8 kB +13 B (+0.02%)
website/build/docs/api/plugins/@docusaurus/plugin-content-blog.html 188 kB +1 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-content-docs.html 194 kB +1 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-content-pages.html 75.1 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-debug.html 47.7 kB +12 B (+0.03%)
website/build/docs/api/plugins/@docusaurus/plugin-google-analytics.html 49.3 kB +3 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-google-gtag.html 48.8 kB -4 B (-0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-google-tag-manager.html 47.6 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-ideal-image.html 48.9 kB +4 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-pwa.html 118 kB +4 B (0%)
website/build/docs/api/plugins/@docusaurus/plugin-rsdoctor.html 40.2 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-sitemap.html 65.7 kB +6 B (+0.01%)
website/build/docs/api/plugins/@docusaurus/plugin-svgr.html 45.4 kB 0 B
website/build/docs/api/plugins/@docusaurus/plugin-vercel-analytics.html 40.6 kB +12 B (+0.03%)
website/build/docs/api/themes.html 29.9 kB 0 B
website/build/docs/api/themes/@docusaurus/theme-classic.html 43.8 kB +4 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-live-codeblock.html 36.7 kB +2 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-mermaid.html 35.5 kB +4 B (+0.01%)
website/build/docs/api/themes/@docusaurus/theme-search-algolia.html 33.3 kB 0 B
website/build/docs/api/themes/configuration.html 257 kB 0 B
website/build/docs/blog.html 200 kB 0 B
website/build/docs/browser-support.html 47.6 kB 0 B
website/build/docs/category/getting-started.html 27.8 kB 0 B
website/build/docs/category/guides.html 35.9 kB 0 B
website/build/docs/cli.html 61.4 kB 0 B
website/build/docs/configuration.html 93 kB +7 B (+0.01%)
website/build/docs/create-doc.html 59.5 kB +12 B (+0.02%)
website/build/docs/creating-pages.html 56.8 kB +1 B (0%)
website/build/docs/deployment.html 193 kB +2 B (0%)
website/build/docs/docs-introduction.html 50.2 kB 0 B
website/build/docs/docs-multi-instance.html 73.3 kB +4 B (+0.01%)
website/build/docs/docusaurus-core.html 226 kB 0 B
website/build/docs/guides/whats-next.html 32.3 kB 0 B
website/build/docs/i18n/crowdin.html 139 kB +12 B (+0.01%)
website/build/docs/i18n/git.html 77.2 kB +4 B (+0.01%)
website/build/docs/i18n/introduction.html 48.5 kB 0 B
website/build/docs/i18n/tutorial.html 158 kB +13 B (+0.01%)
website/build/docs/installation.html 65 kB +5 B (+0.01%)
website/build/docs/introduction/index.html 280 B 0 B
website/build/docs/markdown-features.html 79.2 kB 0 B
website/build/docs/markdown-features/admonitions.html 111 kB +4 B (0%)
website/build/docs/markdown-features/assets.html 86.7 kB +2 B (0%)
website/build/docs/markdown-features/code-blocks.html 221 kB +10 B (0%)
website/build/docs/markdown-features/diagrams.html 51.5 kB +14 B (+0.03%)
website/build/docs/markdown-features/head-metadata.html 50.4 kB 0 B
website/build/docs/markdown-features/links.html 40.7 kB 0 B
website/build/docs/markdown-features/math-equations.html 89.9 kB +4 B (0%)
website/build/docs/markdown-features/plugins.html 95.3 kB +8 B (+0.01%)
website/build/docs/markdown-features/react.html 134 kB 0 B
website/build/docs/markdown-features/tabs.html 141 kB 0 B
website/build/docs/markdown-features/toc.html 82.4 kB +4 B (0%)
website/build/docs/migration.html 39.3 kB -1 B (0%)
website/build/docs/migration/v2.html 39.4 kB 0 B
website/build/docs/migration/v2/automated.html 40.1 kB 0 B
website/build/docs/migration/v2/manual.html 191 kB 0 B
website/build/docs/migration/v2/translated-sites.html 51 kB 0 B
website/build/docs/migration/v2/versioned-sites.html 60.3 kB +8 B (+0.01%)
website/build/docs/migration/v3.html 192 kB +2 B (0%)
website/build/docs/playground.html 31.9 kB 0 B
website/build/docs/resources/index.html 325 B 0 B
website/build/docs/search.html 113 kB +1 B (0%)
website/build/docs/seo.html 88.4 kB +13 B (+0.01%)
website/build/docs/sidebar.html 130 kB +7 B (+0.01%)
website/build/docs/sidebar/autogenerated.html 145 kB +13 B (+0.01%)
website/build/docs/sidebar/items.html 172 kB 0 B
website/build/docs/sidebar/multiple-sidebars.html 61.8 kB +4 B (+0.01%)
website/build/docs/static-assets.html 51.7 kB +4 B (+0.01%)
website/build/docs/styling-layout.html 136 kB +1 B (0%)
website/build/docs/support/index.html 319 B 0 B
website/build/docs/swizzling.html 111 kB +14 B (+0.01%)
website/build/docs/team/index.html 310 B 0 B
website/build/docs/typescript-support.html 60.8 kB +4 B (+0.01%)
website/build/docs/using-plugins.html 106 kB 0 B
website/build/docs/versioning.html 91.4 kB -2 B (0%)
website/build/index.html 37 kB 0 B

compressed-size-action::DOCUSAURUS_INFRA_SLOWER

@slorber slorber marked this pull request as draft April 18, 2025 08:49
@slorber
Copy link
Collaborator Author

slorber commented Apr 18, 2025

Will merge it later, once v1.3.6 is officially released

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

CLA Signed Signed Facebook CLA pr: performance This PR does not add a new behavior, but existing behaviors will be more memory- / time-efficient.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants