-
Notifications
You must be signed in to change notification settings - Fork 28k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm install -g next? #56
Comments
@purplecones I just added a script to "scripts": {
"start": "next"
}, and then ran |
@purplecones usually you use npm scripts. Npm knows how to locate next inside the package. It's recommended to install it locally mostly because you can have different versions in different projects
|
@davemo @impronunciable oh ok. Any reason why this CLI from zeit should be used this way? |
@purplecones with now you are interfacing the |
|
@impronunciable @fabricionaweb thanks |
Following the readme example, it indicates to install next with
npm install next --save
. I couldnt get the example to work this way.zsh: command not found: next
Shouldn't this be
npm install -g next
so that the next command is global?The text was updated successfully, but these errors were encountered: