From 069e61d78d5e705494085916a4d64e0ada03434d Mon Sep 17 00:00:00 2001 From: Hassan El Mghari Date: Sat, 12 Feb 2022 22:03:25 -0500 Subject: [PATCH] Replace babel with SWC & minor changes in `getting started` (#34282) ## List of changes made: - [x] Replaced babel with SWC when talking about compilers & backlinked to the Next.js 12 blog post - [x] Changed "Setup" heading to "Automatic Setup" to make it more clear - [x] Changed one of the cards in the "related" section to be consistent with the rest - [x] Minor grammatical fixes Co-authored-by: Lee Robinson <9113740+leerob@users.noreply.github.com> --- docs/getting-started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 2d78b0330dd4..8506f02b9d49 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -6,7 +6,7 @@ description: Get started with Next.js in the official documentation, and learn m Welcome to the Next.js documentation! -If you're new to Next.js we recommend that you start with the [learn course](https://nextjs.org/learn/basics/create-nextjs-app). +If you're new to Next.js, we recommend starting with the [learn course](https://nextjs.org/learn/basics/create-nextjs-app). The interactive course with quizzes will guide you through everything you need to know to use Next.js. @@ -17,7 +17,7 @@ If you have questions about anything related to Next.js, you're always welcome t - [Node.js 12.22.0](https://nodejs.org/) or later - MacOS, Windows (including WSL), and Linux are supported -## Setup +## Automatic Setup We recommend creating a new Next.js app using `create-next-app`, which sets up everything automatically for you. To create a project, run: @@ -89,12 +89,12 @@ export default HomePage So far, we get: -- Automatic compilation and bundling (with webpack and babel) +- Automatic compilation and [bundling](/docs/advanced-features/compiler.md) - [React Fast Refresh](https://nextjs.org/blog/next-9-4#fast-refresh) - [Static generation and server-side rendering](/docs/basic-features/data-fetching/overview.md) of [`./pages/`](/docs/basic-features/pages.md) - [Static file serving](/docs/basic-features/static-file-serving.md). `./public/` is mapped to `/` -In addition, any Next.js application is ready for production from the start, read more in our [Deployment documentation](/docs/deployment.md). +In addition, any Next.js application is ready for production from the start. Read more in our [Deployment documentation](/docs/deployment.md). ## Related @@ -110,7 +110,7 @@ For more information on what to do next, we recommend the following sections:
CSS Support: - Use the built-in CSS support to add custom styles to your app. + Built-in CSS support to add custom styles to your app.