Quando clico no link, mostra este erro:
2020-06-02T20:58:06.216437+00:00 heroku[web.1]: Starting process with command `npm start` 2020-06-02T20:58:08.832352+00:00 heroku[web.1]: Process exited with status 1 2020-06-02T20:58:08.878842+00:00 heroku[web.1]: State changed from starting to crashed 2020-06-02T20:58:08.729034+00:00 app[web.1]: 2020-06-02T20:58:08.729053+00:00 app[web.1]: > xxxxxxx@0.0.0 start /app 2020-06-02T20:58:08.729054+00:00 app[web.1]: > ng serve 2020-06-02T20:58:08.729054+00:00 app[web.1]: 2020-06-02T20:58:08.747226+00:00 app[web.1]: sh: 1: ng: not found 2020-06-02T20:58:08.750860+00:00 app[web.1]: npm ERR! code ELIFECYCLE 2020-06-02T20:58:08.751190+00:00 app[web.1]: npm ERR! syscall spawn 2020-06-02T20:58:08.751289+00:00 app[web.1]: npm ERR! file sh 2020-06-02T20:58:08.751481+00:00 app[web.1]: npm ERR! errno ENOENT 2020-06-02T20:58:08.752318+00:00 app[web.1]: npm ERR! xxxxxxx@0.0.0 start: `ng serve` 2020-06-02T20:58:08.752400+00:00 app[web.1]: npm ERR! spawn ENOENT 2020-06-02T20:58:08.752497+00:00 app[web.1]: npm ERR! 2020-06-02T20:58:08.752587+00:00 app[web.1]: npm ERR! Failed at the xxxxxxx@0.0.0 start script. 2020-06-02T20:58:08.752665+00:00 app[web.1]: npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 2020-06-02T20:58:08.760554+00:00 app[web.1]: 2020-06-02T20:58:08.760745+00:00 app[web.1]: npm ERR! A complete log of this run can be found in: 2020-06-02T20:58:08.760851+00:00 app[web.1]: npm ERR! /app/.npm/_logs/2020-06-02T20_58_08_753Z-debug.log 2020-06-02T20:58:09.708015+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=xxxxxxx.herokuapp.com request_id=b580aed9-e66c-4cf8-a901-bbf8acc90ed6 fwd="191.185.120.103" dyno= connect= service= status=503 bytes= protocol=https 2020-06-02T20:58:11.255910+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=xxxxxxx.herokuapp.com request_id=faf5dea1-2366-418d-b198-e2ef7abdefd9 fwd="191.185.120.103" dyno= connect= service= status=503 bytes= protocol=https 2020-06-02T20:58:31.200035+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=xxxxxxx.herokuapp.com request_id=057625c2-3cb5-4682-bac3-868e181d036f fwd="191.185.120.103" dyno= connect= service= status=503 bytes= protocol=https 2020-06-02T20:58:31.855324+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=xxxxxxx.herokuapp.com request_id=08a7cfc4-8316-437b-abe0-6c681b787f39 fwd="191.185.120.103" dyno= connect= service= status=503 bytes= protocol=https
package.json
{ "name": "xxxxxxx", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e", "heroku-postbuild": "ng build --prod" }, "private": true, "dependencies": { "@angular/animations": "~9.0.6", "@angular/cdk": "^9.2.4", "@angular/common": "~9.0.6", "@angular/compiler": "~9.0.6", "@angular/core": "~9.0.6", "@angular/flex-layout": "^9.0.0-beta.31", "@angular/forms": "~9.0.6", "@angular/material": "^9.2.4", "@angular/platform-browser": "~9.0.6", "@angular/platform-browser-dynamic": "~9.0.6", "@angular/router": "~9.0.6", "angular2-text-mask": "^9.0.0", "jquery": "^3.5.1", "ngx-perfect-scrollbar": "^9.0.0", "rxjs": "~6.5.4", "tslib": "^1.10.0", "zone.js": "~0.10.2" }, "devDependencies": { "@angular-devkit/build-angular": "~0.900.6", "@angular/cli": "~9.0.6", "@angular/compiler-cli": "~9.0.6", "@angular/language-service": "~9.0.6", "@types/node": "^12.11.1", "@types/jasmine": "~3.5.0", "@types/jasminewd2": "~2.0.3", "codelyzer": "^5.1.2", "jasmine-core": "~3.5.0", "jasmine-spec-reporter": "~4.2.1", "karma": "~4.3.0", "karma-chrome-launcher": "~3.1.0", "karma-coverage-istanbul-reporter": "~2.1.0", "karma-jasmine": "~2.0.1", "karma-jasmine-html-reporter": "^1.4.2", "protractor": "~5.4.3", "ts-node": "~8.3.0", "tslint": "~5.18.0", "typescript": "~3.7.5" }, "engines": { "node": "13.12.0", "npm": "6.14.4" } }
O que pode ser ?