React, js on Apache server

I work in a response-js project and I have a cloud server on which an Apache server is installed. My question is: can I set up my response project on an Apache server ?.

0
apache reactjs react-router
source share
2 answers

According to Devin Tyrone, react is a browser technology, which means that in addition to the client browser that downloads the application from your server, everything happens on the client computer.

Just make sure your apache (or any other server) serves for the correct html and js files for your application to run!

+5
source share

No, you cannot configure the project on the Apache server. I think you should use Docker for this type of thing.

It makes sense? A response is simply a foreground library that is used to create reusable interface components.

-3
source share

All Articles