Skip to content

Commit

Permalink
Update NuxtJS Link to Current Version (mdn#32046)
Browse files Browse the repository at this point in the history
* Update NuxtJS Link to Current Version

This PR addresses the issue of the outdated link to **NuxtJS**, https://nuxtjs.org, which currently redirects to https://v2.nuxt.com. 
This older link points to a version of NuxtJS (v2) that is nearing its end-of-life. The link has been updated to https://nuxt.com/, which leads to the latest version, NuxtJS v3.

* Update missed link

* Apply suggestions from code review - commiting suggestions from others

Co-authored-by: Daniel Roe <[email protected]>

---------

Co-authored-by: Hamish Willee <[email protected]>
Co-authored-by: Daniel Roe <[email protected]>
  • Loading branch information
3 people authored Feb 16, 2024
1 parent 4deba5c commit 447d4de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ There are many other server-side technologies you can use for form handling, inc
- Node.js
- [Express](/en-US/docs/Learn/Server-side/Express_Nodejs)
- [Next.js](https://nextjs.org/) (for React apps)
- [Nuxt](https://nuxtjs.org/) (for Vue apps)
- [Nuxt](https://nuxt.com/) (for Vue apps)
- [Remix](https://remix.run/)
- PHP
- [Laravel](https://laravel.com/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ A few popular CMS systems include [Wordpress](https://wordpress.com/), [Joomla](

**Server-side rendering** (**SSR**) is an application architecture in which it is the _server_'s job to render a single-page application. This is the opposite of _client-side rendering_, which is the most common and most straightforward way to build a JavaScript application. Server-side rendering is easier on the client's device because you're only sending a rendered HTML file to them, but it can be difficult to set up compared to a client-side-rendered application.

All of the frameworks covered in this module support server-side rendering as well as client-side rendering. Check out [Next.js](https://nextjs.org/) for React, [Nuxt.js](https://nuxtjs.org/) for Vue (yes, it is confusing, and no, these projects are not related!), [FastBoot](https://github.com/ember-fastboot/ember-cli-fastboot) for Ember, and [Angular Universal](https://angular.io/guide/universal) for Angular.
All of the frameworks covered in this module support server-side rendering as well as client-side rendering. Check out [Next.js](https://nextjs.org/) for React, [Nuxt](https://nuxt.com/) for Vue (yes, it is confusing, and no, these projects are not related!), [FastBoot](https://github.com/ember-fastboot/ember-cli-fastboot) for Ember, and [Angular Universal](https://angular.io/guide/universal) for Angular.

> **Note:** Some SSR solutions are written and maintained by the community, whereas some are "official" solutions provided by the framework's maintainer.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Here's where you should go to learn more about Vue:
- [Vue GitHub Repo](https://github.com/vuejs/vue) — The Vue code itself. This is where you can report issues and/or contribute directly to the Vue codebase. Studying the Vue source code can help you better understand how the framework works, and write better code.
- [Vue Forum](https://forum.vuejs.org/) — The official forum for getting help with Vue.
- [Vue CLI Docs](https://cli.vuejs.org/) — Documentation for the Vue CLI. This contains information on customizing and extending the output you are generating via the CLI.
- [NuxtJS](https://nuxtjs.org/)NuxtJS is a Server-Side Vue Framework, with some architectural opinions that can be useful to creating maintainable applications, even if you don't use any of the Server Side Rendering features it provides. This site provides detailed documentation on using NuxtJS.
- [Nuxt](https://nuxt.com/)Nuxt is a Server-Side Vue Framework, with some architectural opinions that can be useful to creating maintainable applications, even if you don't use any of the Server Side Rendering features it provides. This site provides detailed documentation on using Nuxt.
- [Vue Mastery](https://www.vuemastery.com/courses/) — A paid education platform that specializes in Vue, including some free lessons.
- [Vue School](https://vueschool.io/) — Another paid education platform specializing in Vue.

Expand Down

0 comments on commit 447d4de

Please sign in to comment.