From f4ea8385faa357a9b0b18ec35a1676e2e364a013 Mon Sep 17 00:00:00 2001 From: bornkiss <101384056+bornkiss@users.noreply.github.com> Date: Mon, 28 Apr 2025 14:42:31 +0800 Subject: [PATCH] docs: update vite link --- src/content/learn/build-a-react-app-from-scratch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/build-a-react-app-from-scratch.md b/src/content/learn/build-a-react-app-from-scratch.md index 721f670dd81..b5f29e9af94 100644 --- a/src/content/learn/build-a-react-app-from-scratch.md +++ b/src/content/learn/build-a-react-app-from-scratch.md @@ -116,7 +116,7 @@ Similarly, if you rely on the apps using your framework to split the code, you m Splitting code by route, when integrated with bundling and data fetching, can reduce the initial load time of your app and the time it takes for the largest visible content of the app to render ([Largest Contentful Paint](https://web.dev/articles/lcp)). For code-splitting instructions, see your build tool docs: -- [Vite build optimizations](https://v3.vitejs.dev/guide/features.html#build-optimizations) +- [Vite build optimizations](https://vite.dev/guide/features.html#build-optimizations) - [Parcel code splitting](https://parceljs.org/features/code-splitting/) - [Rsbuild code splitting](https://rsbuild.dev/guide/optimization/code-splitting)