We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NEXT_PUBLIC_BACK_URL
utils.js
process.env.BACK_URL
cont data = res.json()
const { data: response } = await axios(`${url}`) return response
The text was updated successfully, but these errors were encountered:
Successfully reciveing the fetched data from Node.js on Next.js's ser…
a64d52c
…ver #12
No branches or pull requests
Bugs
my
NEXT_PUBLIC_BACK_URL
at .env.local was called atutils.js
file asprocess.env.BACK_URL
The Back_url was heroku's deployed link
getServerSideProps cannot be serialized as JSON. Please only return JSON serializable data types vercel/next.js#11993
axios don't need to convert the data into .json() ,as it was before at the code
cont data = res.json()
, instead :The text was updated successfully, but these errors were encountered: