Skip to content

Commit 6eff118

Browse files
authored
Update start-a-new-react-project.md (#4712)
Fixed TypeScript hyperlink to the correct website.
1 parent d522a5f commit 6eff118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: beta/src/pages/learn/start-a-new-react-project.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The [Next.js Foundations](https://nextjs.org/learn/foundations/about-nextjs) tut
7272
You may prefer to create and configure your own toolchain. A toolchain typically consists of:
7373

7474
* A **package manager** lets you install, update, and manage third-party packages. Popular package managers: [npm](https://www.npmjs.com/) (built into Node.js), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/).
75-
* A **compiler** lets you compile modern language features and additional syntax like JSX or type annotations for the browsers. Popular compilers: [Babel](https://babeljs.io/), [TypeScript](http://typescript.org/), [swc](https://swc.rs/).
75+
* A **compiler** lets you compile modern language features and additional syntax like JSX or type annotations for the browsers. Popular compilers: [Babel](https://babeljs.io/), [TypeScript](https://www.typescriptlang.org/), [swc](https://swc.rs/).
7676
* A **bundler** lets you write modular code and bundle it together into small packages to optimize load time. Popular bundlers: [webpack](https://webpack.js.org/), [Parcel](https://parceljs.org/), [esbuild](https://esbuild.github.io/), [swc](https://swc.rs/).
7777
* A **minifier** makes your code more compact so that it loads faster. Popular minifiers: [Terser](https://terser.org/), [swc](https://swc.rs/).
7878
* A **server** handles server requests so that you can render components to HTML. Popular servers: [Express](https://expressjs.com/).

0 commit comments

Comments
 (0)