Currently integrating Angular with NX, I have established two distinct groups: books
and cars
. My goal is to develop an overview
library for each group that includes a table for viewing either books or cars.
To start, I created the library under libs/books/overview
. Next, I attempted to replicate the same process for cars using libs/cars/overview
, only to encounter the following error:
Error: Project name already exists.
Would it be necessary to title the libraries as books-overview
? In this case, the new structure would look like: libs/books/books-overview
. However, since both instances of "books" seem redundant, this may not be the most efficient approach.