ng add @ionic/angular
ionic init
프로젝트 이름을 현재 프로젝트 이름과 동일하게 지어야함
angular.json 파일에서 outputPath : 속성을 “www” 로 변경
index.html 파일에서 <base href=”/”> 를 <base href=”./”> 으로 변경
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"
}
}
}