I have an Angular project which I cannot deploy so I decided to use lite-server to see what's wrong. But when I run lite-server in my terminal, I get the following errors:
[Browsersync] Serving files from: ./
[Browsersync] Watching files...
21.09.26 17:17:05 404 GET /index.html
21.09.26 17:17:06 404 GET /favicon.ico
21.09.26 17:20:21 404 GET /index.html
This is my scripts object in package.json
:
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"dev": "lite-server"
},