NestJS Angular Universal in an Nx Workspace
Not so long ago I started using Angular Universal in all my Angular projects because of its benefits in SEO and performance on low-end devices and slow connections. I've been using Nx since a while and one day I started an Angular application that wo...
samosunaz.hashnode.dev6 min read
Thanks for the great and simple to understand guide! I noticed when I am trying to build either projects, it gives:
$ nx run api:build Could not execute api:build because it has a circular dependency api:build --> dashboard:build --> api:buildand
$ nx run dashboard:build Could not execute dashboard:build because it has a circular dependency dashboard:build:production --> api:build:production --> dashboard:build:production(Where dashboard is my frontend and api is backend)
What should be the command to build and ship to production?
Thank you