Reputation: 3698
I am getting started with Ionic. I want to use ionic 1. I am using following command to create ionic v1 app as explained here.
ionic start -v1 myapp blank
But it's creating ionic v2 app using angular 2. I don't know why it is doing so. I also tried commands below but no luck.
ionic -v1 start myapp blank
ionic start myapp -v1 blank
ionic start myapp blank -v1
It's not showing any error or warning either. Can anyone please help? Thanks.
Upvotes: 0
Views: 422
Reputation: 2223
The current way of doing this is using the --type=ionic1
option:
ionic --version # 3.8.1
ionic start test blank --type=ionic1
Upvotes: 0
Reputation: 11
You need to downgrade your ionic version. Then run "ionic start myproject blank" without --v
Upvotes: 1