Manual web deployment

After reading the docs, I came across manual build of the client.

Can I build the web separately using npm run build and just connect that to my api server? How do I need to connect that to my kit server?

If I do it that way, can I just skip the whole web setup process?

1 Like

You are right. You can do the build process in two ways:

  1. Automatic using hollaex web
  2. Manual through npm run build as you mentioned

Keep in mind that if you use the manual build you need to set your server address for the client server to connect to in the .env variable called REACT_APP_SERVER_ENDPOINT

Once you run the build there will be a build folder in your project that you can use and host anywhere.

For more information please read the guideline here.