You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Flux course versions. Json-server renamed dist to public in .16:
The api server wasn't starting in 3rd module. The reason was due to the below static line pointing to dist folder in apiServer.js instead of public .
Line present in the file - static: "node_modules/json-server/dist",
The new modified line that works - static: "node_modules/json-server/public",
The text was updated successfully, but these errors were encountered:
Update Flux course versions. Json-server renamed dist to public in .16:
The api server wasn't starting in 3rd module. The reason was due to the below static line pointing to dist folder in apiServer.js instead of public .
Line present in the file - static: "node_modules/json-server/dist",
The new modified line that works - static: "node_modules/json-server/public",
The text was updated successfully, but these errors were encountered: