Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 661 Bytes

build-for-production.md

File metadata and controls

19 lines (12 loc) · 661 Bytes

Build For Production

Category: React

You can create a production build for a React application using:

yarn run build

The output of this will be static content generated in the /build directory with CSS, JavaScript, and media files contained in /build/static.

For optimal performance, specify Cache-Control: max-age=31536000 (one year) for content served in build/static and Cache-Control: no-cache for everything else. A cache expiry of one year will not cause any issues as filenames contain unique hashes.

Deploy the content in /build to a web server or run locally using serve as follows:

serve -s build