Reputation: 2837
I'm trying to create a new gatsbyjs site but I don't want to use the new v3 as I'm using a template which only supports v2.6.0 how can I run npm gatsby init on v2.6.0
Upvotes: 1
Views: 134
Reputation: 29335
Just:
npm install [email protected]
You can read for further details about npm-install
command at the docs.
You can clone your template and lower the Gatsby version if needed.
Upvotes: 1