DEV Community

Discussion on: Building an Angular application from scratch with Nx and NgRx

Collapse
 
chandlerbaskins profile image
Chandler Baskins • Edited

Awesome job! Exactly what I needed to sit down and learn NgRx. One small typo when setting up the initial NX workspace. Instead of this

nx g ngrx app --root --no-interactive --project quotes-app --module apps/quotes-app/src/app/app.module.ts
Enter fullscreen mode Exit fullscreen mode

It should be this

nx g ngrx app --root --no-interactive --project quotes --module apps/quotes/src/app/app.module.ts
Enter fullscreen mode Exit fullscreen mode

Thanks again!

Collapse
 
brandontroberts profile image
Brandon Roberts

Fixed, thanks!