Init new Nuxt project without "Initialize git repository" check?
Is there a way to do this?
I have my new project command so far as:
And that does almost everything I need to create a new project. I NEVER initialize a git repo in my frontend folder (typically monorepos with separate backend).
Isn't there some flag to make this not a thing? Personally I think it should be initialized without it anyways.
2 Replies
npx nuxi init frontend --packageManager yarn --git-init=false
https://nuxt.com/docs/api/commands/init#optionsThanks!