앵귤러 프로젝트를 아이오닉으로 바꾸는 방법

ng add @ionic/angular
ionic init
ionic serve --project="현재프로젝트이름"

app 을 못찾는 에러 나올시에 ionic.config.json 파일을 변경

An unhandled exception occurred: Project "app" does not exist. getting this error after ionic serve

{
  "defaultProject": "프로젝트 이름",
  "projects": {
    "프로젝트 이름": {
      "name": "프로젝트 이름",
      "integrations": {
        "capacitor": {}
      },
      "type": "angular"
    }
  }
}