Hey there, I'm encountering the error
TypeError: mongoose__WEBPACK_IMPORTED_MODULE_15___default.a.connect is not a function
import mongoose from "mongoose";
const dbURI = 'myurlstuffhere';
mongoose.connect(dbURI , {useNewUrlParser: true, useUnifiedTopology: true}); //encountering issue at this point
Just wanted to mention that I utilized npm install mongoose --save to add the package