the file that is causing the error:
OverwriteModelError: Cannot overwrite Movies model once compiled
im using next.js
const mongoose = require("mongoose")
const MovieSchema = new mongoose.Schema({
title: {type : String,required :true},
backdrop_path:{type:String,required:true},
vote_count:{type:Number},
},
{
collection:"Movies"
}
)
const Movie = mongoose.model("Movies",MovieSchema)
module.exports = Movie