본문 바로가기

Backend/NestJS

[오류] Invalid schematic "billing". Please, ensure that "billing" exists in this collection.

문제 상황 

Nest.js에서 billing app을 만드려고 했는데 제목과 같이 

Invalid schematic "billing". Please, ensure that "billing" exists in this collection. 라는 에러가 발생하였다. 

nest g billing

문제 원인 

nest g app billing

nest에서 app을 만들거면 app 키워드를 써줘야 하는데, 이 부분이 누락되어 에러가 발생하였다. 

 

app 키워드를 터미널 커맨드창에 삽입해주면 정상적으로 Nest.js의 프로젝트에서 billing app이 만들어진다.