I have been attempting to deploy a website on Vercel from my VSCode command line using the following command:
vercel
Upon executing this command, I receive the following output: https://i.sstatic.net/JK9CY.png
When I run:
vercel logs demo-minting-frontend-rga7f9q73-hemang-h.vercel.app
The output is as follows:
PS C:\CS\Three.js\Marketplace-three\Self-coded-creation> vercel logs demo-minting-frontend-rga7f9q73-hemang-h.vercel.app
Vercel CLI 24.0.0
... (output continues)
2022-03-07T15:37:12.463Z
In an attempt to address the warnings, I proceeded to execute:
npm install uuid
To install the latest version of UUID and potentially bypass the first warning. However, despite this, running the vercel
command still yielded similar logs.
I also tried adjusting the build settings to CI=False
on Vercel under project settings, but unfortunately, did not receive a successful response.
My package.json is structured like this:
{
"name": "demo-minting-page",
"version": "1.0.0",
... (package.json content continues)
}
The .eslintrc.json configuration is as follows:
{
"root": true,
"extends": "next",
... (.eslintrc.json content continues)
}
You can find the complete code in my GitHub repository linked below: Github repo
Any assistance or guidance in resolving these issues would be greatly appreciated.
P.S: The functionality works perfectly fine on localhost:3000 without any bugs. Running npm run dev
multiple times on my terminal hasn't raised any concerns while on localhost.