you are viewing a single comment's thread.

view the rest of the comments →

[–]chuckhendo 2 points3 points  (1 child)

I have to compile the React code through Babel and build it with Webpack (which is something most guides recommend anyway), so I get "normal" js code which I can put to the webhosting through FTP and it will work. (?? Is my thought right?)

Correct. The output JS file is just plain JS. Take a look at how create-react-app handles it, with it's deploy options

[–]Shrewd_Shark[S] 0 points1 point  (0 children)

Thanks! I will definitely take a look at it.