I am running an Angular: 8.2.14 application on a Macbook Pro 13’.
My problem:
I am trying to run netlify dev inside my angular project. After entering the command in th cli I just get:
◈ Netlify Dev ◈
◈ Starting Netlify Dev with undefined
The server doesn’t start.
In my netlify.toml file I have:
[dev]
command = “npm start” # I have also tried ng serve
port = 3000 # Port that the dev server will be listening on
functionsPort = 34567 # port for functions server
publish = “dist/my-app-name”
What I have tried
- I tried using yarn instead of npm, still having the same problem.
- I ran “npx react-create-app app-name” followed by “netlify dev” which worked fine!
- I tried reinstalling the netlify-cli -> Didn’t help
My Question
What could possibly be wrong? Is this a bug?