Michał Krasuski
Fullstack Dev (dotnet based)
just to clarify, it should show the weather app right?
I get the edit/App.tsx react page
followed the steps but 2 tabs are opened,one is React app and one shows: Launching the SPA proxy... 'This page will automatically redirect to localhost:44483 when the SPA proxy is ready.' and keeps loading... then a cmd window shows: "Something is already running on port 3000.Would you like to run the app on another port instead? » (Y/n)"
Thank you for interesting article. There is a problem in the code. When spa proxy starts and starts front, then spa proxy does not stop work and spawns a lot of front.
Thank you for your great article. I am using Ubuntu 18.0.4. In my case https in dotnet react works fine but with react typescript the registering certificate doesn't work for me and I face with this error
There was an error saving the HTTPS developer certificate to the current user personal certificate store
I tried many solutions through the web but I found no answer and just disabled the https and prebuild command. Do you happen to know how it can be solved?
Hey,
I had issue with ts-node missing and then following error:
Invalid options object. Dev Server has been initialized using an options object that does not match the API schema. - options.allowedHosts[0] should be a non-empty string
it was simply adding following code to package.json to make the issue fixed:
"options": { "allowedHosts": [ "localhost", ".localhost" ], "proxy": "your localhost:port address" }I could not add link to proxy as a new user