Static Site Using React Native (Expo)

Not seeing in the Docs where React Native (via Expo) is supported for a Static Site.

Has anyone been successful at using React Native (with or without Expo) for a web-based client?

Thank you for your time!
jv

I might be misunderstanding the question here but since expo-cli is just an NPM package then by having it present in your package.json, it would be installed when we run yarn as part of your deployment and would be available so that you can then run expo build:web as your buildCommand, here’s the render.yaml I used to deploy https://john-expo.onrender.com/

services: - type: web name: john-expo env: static buildCommand: expo build:web staticPublishPath: ./web-build

John B

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.