79167824

Date: 2024-11-07 19:25:08
Score: 0.5
Natty:
Report link

I got a working solution, I replaced :

  "targets": {
    "build": {
      "executor": "@angular-devkit/build-angular:application",
      ...
    },
    "serve": {
      "executor": "@angular-devkit/build-angular:dev-server",
      ...
    },
  },

with:

  "targets": {
    "build": {
      "executor": "@nx/angular:application",
      ...
    },
    "serve": {
      "executor": "@nx/angular:dev-server",
      ...
    },
  },

in the project.json of the angular app

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Verrick