Fix: grammar and add comma (#7917)

Co-authored-by: unknown <deepanshu.9dd@gmail.com~>
This commit is contained in:
Deepanshu
2025-09-02 23:12:06 +05:30
committed by GitHub
parent ca3e2718ba
commit 67584b31ab

View File

@@ -122,7 +122,7 @@ For code-splitting instructions, see your build tool docs:
### Improving Application Performance {/*improving-application-performance*/}
Since the build tool you select only support single page apps (SPAs) you'll need to implement other [rendering patterns](https://www.patterns.dev/vanilla/rendering-patterns) like server-side rendering (SSR), static site generation (SSG), and/or React Server Components (RSC). Even if you don't need these features at first, in the future there may be some routes that would benefit SSR, SSG or RSC.
Since the build tool you select only supports single page apps (SPAs), you'll need to implement other [rendering patterns](https://www.patterns.dev/vanilla/rendering-patterns) like server-side rendering (SSR), static site generation (SSG), and/or React Server Components (RSC). Even if you don't need these features at first, in the future there may be some routes that would benefit SSR, SSG or RSC.
* **Single-page apps (SPA)** load a single HTML page and dynamically updates the page as the user interacts with the app. SPAs are easier to get started with, but they can have slower initial load times. SPAs are the default architecture for most build tools.