Skip to content

Commit

Permalink
Replace babel with SWC & minor changes in getting started (#34282)
Browse files Browse the repository at this point in the history
## 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>
  • Loading branch information
Nutlope and leerob committed Feb 13, 2022
1 parent 4f5b062 commit 069e61d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/getting-started.md
Expand Up @@ -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.

Expand All @@ -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:

Expand Down Expand Up @@ -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

Expand All @@ -110,7 +110,7 @@ For more information on what to do next, we recommend the following sections:
<div class="card">
<a href="/docs/basic-features/built-in-css-support.md">
<b>CSS Support:</b>
<small>Use the built-in CSS support to add custom styles to your app.</small>
<small>Built-in CSS support to add custom styles to your app.</small>
</a>
</div>

Expand Down

0 comments on commit 069e61d

Please sign in to comment.