Search code examples
javascriptreact-nativebuildproductionnetlify

How to build only the web version of a React Native project, into production?


I am new to React Native. I have created a project and want to build it into production. For now, I only want to build the web version (not android/ios app), and host it on Netlify, thus allowing others to access it. How should I proceed?


Solution

  • You should execute this command:

    expo build:web
    

    it will generate in the web-build/ directory the static site to deploy in production.