I run reactjs by serve on port 5000 after generating build. now I need SSL protocol. Is there any way to support serve on SSL?
serve -s build
As far as I know React doesn't care what protocol http or https you are using. This is only about server configuration. However, you needed to be careful with the links used through your react components to be able to use https if needed. I guess you might be talking aboud nodejs or node. So, if this is the case this link might be helpful: https://www.sitepoint.com/how-to-use-ssltls-with-node-js/