Divyansh Singh

Results 432 comments of Divyansh Singh
trafficstars

I'm not sure. I'll check around the weekend. Most likely some memory leak in mathjax? (Because it's happening with that other plugin too as you mentioned in https://github.com/vuejs/vitepress/issues/4740#issuecomment-2938951216). For me...

~~I've created an issue on the vite repo, but might be bit hard to debug. It might be in vite-plugin-vue or vitepress or vue compiler too. I'll try profiling.~~ Some...

Not sure but it's happening on vitepress 1.0.0 too, at least on stackblitz.

Most likely caused by this - https://github.com/vitejs/vite/pull/16588 (the order is wrong now - https://www.diffchecker.com/0EPXuHIs/) Working fine till vite 5.3.0-beta.1 Please use npm/pnpm overrides till this is resolved.

This isn't supported currently. ignoreDeadLinks is only for pages not assets.

> Do you have any insights into how StackBlitz is able to successfully build even when an asset is missing? It doesn't. You probably are running the dev command.

How long does it take? Try disabling your plugins. It takes around 5 minutes to build a 1000 page site 👀

@ajiho Does this happen on the latest vitepress version too? Do you have local search or twoslash enabled? Can you try disabling them and then testing once?

Can you try adjusting the buildConcurrency? ```ts import { defineConfig } from 'vitepress' export default defineConfig({ buildConcurrency: 1 // this will be very slow, but please check if out of...