I’m trying to use netlify dev in a create-react-app project but, after some minutes it keeps loading without displaying any error message.
netlify.toml
[build]
command = "yarn build" # the command you run to build this file
functions = "api" # netlify-lambda builds to this folder AND Netlify reads functions from here
publish = "build" # create-react-app builds to this folder, Netlify should serve all these files statically
Extra info:
- My netlify-cli version is
netlify-cli/2.12.0 darwin-x64 node-v12.7.0 - I also have
netlify-lambdaon package.json"netlify-lambda": "^1.6.3", - I have a file called
tutorialState.jsinside of/apifolder - I have a redirects file on
public/_redirects - I also opened an issue related to this: netlify dev keeps loading after a few minutes · Issue #601 · netlify/cli · GitHub
