From 79e1c48c21f94e6159ade64b1f924b4089e71c65 Mon Sep 17 00:00:00 2001 From: bornkiss <101384056+bornkiss@users.noreply.github.com> Date: Sat, 17 May 2025 02:46:57 +0800 Subject: [PATCH] docs: update vite link (#7784) --- 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 721f670dd..b5f29e9af 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)