You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/db/index.js
in line 7 "${process.env.MONGODB_URI}/${DB_NAME})" , this " / " give error by connecting the database so just remove it and it would be life
"${process.env.MONGODB_URI}/${DB_NAME})" --> before
"${process.env.MONGODB_URI}${DB_NAME})" --> after
The text was updated successfully, but these errors were encountered:
src/db/index.js
in line 7 "
${process.env.MONGODB_URI}/${DB_NAME}
)" , this " / " give error by connecting the database so just remove it and it would be life"
${process.env.MONGODB_URI}/${DB_NAME}
)" --> before"
${process.env.MONGODB_URI}${DB_NAME}
)" --> afterThe text was updated successfully, but these errors were encountered: