From 6b45b652d62e693f662f7a625de44763d6e00bbf Mon Sep 17 00:00:00 2001 From: Elia Maino Date: Mon, 20 Jul 2020 18:04:59 +0200 Subject: [PATCH] Update urls of tools examples (#3123) * Update urls of tools examples Some urls are outdated, they still redirect to the correct page but for example the info you can see on the bottom left of the page to know which page you're about to visit when hovering the link is wrong. - https://github.com/facebookincubator/create-react-app -> https://github.com/facebook/create-react-app - https://github.com/zeit/next.js/ -> https://github.com/vercel/next.js * Provide urls to tools websites instead of GH repos --- content/docs/code-splitting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/code-splitting.md b/content/docs/code-splitting.md index 9471ac28..cc9d745f 100644 --- a/content/docs/code-splitting.md +++ b/content/docs/code-splitting.md @@ -45,7 +45,7 @@ console.log(add(16, 26)); // 42 > > Your bundles will end up looking a lot different than this. -If you're using [Create React App](https://github.com/facebookincubator/create-react-app), [Next.js](https://github.com/zeit/next.js/), [Gatsby](https://www.gatsbyjs.org/), or a similar tool, you will have a Webpack setup out of the box to bundle your +If you're using [Create React App](https://create-react-app.dev/), [Next.js](https://nextjs.org/), [Gatsby](https://www.gatsbyjs.org/), or a similar tool, you will have a Webpack setup out of the box to bundle your app. If you aren't, you'll need to setup bundling yourself. For example, see the