Last active
January 31, 2021 14:50
-
-
Save jmaicaaan/41da627eeb7a047bb87defb7a56cd4ef to your computer and use it in GitHub Desktop.
[Tutorial] NPM start script update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "nextjs-with-google-cloud-run", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"dev": "next dev", | |
"build": "next build", | |
"start": "next start -p $PORT" | |
}, | |
"dependencies": { | |
"next": "10.0.5", | |
"react": "17.0.1", | |
"react-dom": "17.0.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment