I installed the nuxt-mongoose module as shown in the documentation.
but while importing the package, I get an error like this: Vue: Cannot find module #nuxt/mongoose or its corresponding type declarations.
import {defineMongooseModel} from '#nuxt/mongoose';
export const BlogSchema = defineMongooseModel('blog', {
schema: {
title: {
type: 'string',
required: true
}
}
});
I tried deleting nuxts temporary files and reinstalling but that didn't work.
bun x nuxi@latest cleanup