Reputation: 1
I am doing some next.js work, mainly learning and came across a website which provides landing pages for websites (https://startuplanding.redq.io/).
I have downloaded one of their templates to play around with, it's the next.js version. I have tried following the documentation on the website (https://startuplanding-documentation.vercel.app/getting-started) to open the dev server and view the site in the browser by using npm run dev however I get the following error message:
npm ERR! Missing script: "dev" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run
I have used npm run and get the following message:
Lifecycle scripts included in [email protected]: test echo "Error: no test specified" && exit 1
Not too sure how to get past this, any help would be appreciated.
Thanks
I tried using mp run dev to run the development server and expected to work as normal since I have done other next.js projects and nothing like this has happend.
Instead I got this error message:
npm ERR! Missing script: "dev" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run
I have used npm run and get the following message:
Lifecycle scripts included in [email protected]: test echo "Error: no test specified" && exit 1
Upvotes: 0
Views: 1447
Reputation: 1
If you run:
node -p "process.arch"
does the result match your architecture (32/64 bits)?
output :
arm64
ref:"https://github.com/vercel/next.js/discussions/43202"
Upvotes: 0