diff --git a/docs/content/2.concepts/1.introduction.md b/docs/content/2.concepts/1.introduction.md index 590d913d9d..219b77a7a9 100644 --- a/docs/content/2.concepts/1.introduction.md +++ b/docs/content/2.concepts/1.introduction.md @@ -9,7 +9,7 @@ To understand what is Nuxt, we need to understand what we need to create a moder - A JavaScript framework to bring reactivity and web components, we chose [Vue.js](https://v3.vuejs.org). - A bundler to support hot module replacement in development and bundle your code for production, we support both [Webpack 5](https://webpack.js.org/) and [Vite](https://vitejs.dev/). - A transpiler in order to write the latest JavaScript syntax while supporting legacy browsers, we use [esbuild](https://esbuild.github.io) for that. -- A server for serving your application in development, but also to support [server-side rendering](https://v3.vuejs.org/guide/ssr/introduction.html#what-is-server-side-rendering-ssr) or API routes, Nuxt uses [h3](https://github.com/unjs/h3) for deployment versatility and unmatched performance. +- A server for serving your application in development, but also to support [server-side rendering](https://v3.vuejs.org/guide/ssr/introduction.html#what-is-server-side-rendering-ssr) or API routes, Nuxt uses [h3](https://github.com/unjs/h3) for deployment versatility such as serverless, workers, Node.js and unmatched performance. - A routing library to handle client-side navigation, we chose [vue-router](https://next.router.vuejs.org). ::