Skip to content

Commit 090b4f8

Browse files
ianschmitzhisapy
authored andcommitted
Add production build section to docs (facebook#5900)
1 parent a9cf551 commit 090b4f8

File tree

7 files changed

+503
-473
lines changed

7 files changed

+503
-473
lines changed

docusaurus/docs/available-scripts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Launches the test runner in the interactive watch mode. See the section about [r
2020

2121
Builds the app for production to the `build` folder. It correctly bundles React in production mode and optimizes the build for the best performance.
2222

23-
The build is minified and the filenames include the hashes. Your app is ready to be deployed!
23+
The build is minified and the filenames include the hashes. See the [production build](production-build.md) section for more information.
2424

25-
See the section about [deployment](deployment.md) for more information.
25+
Your app is ready to be deployed! See the section about [deployment](deployment.md) for more information about deploying your application to popular hosting providers.
2626

2727
## `npm run eject`
2828

docusaurus/docs/code-splitting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class App extends Component {
4545
export default App;
4646
```
4747

48-
This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button.
48+
This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button. For more information on the chunks that are created, see the [production build](production-build.md) section.
4949

5050
You can also use it with `async` / `await` syntax if you prefer it.
5151

0 commit comments

Comments
 (0)