37 lines
717 B
Markdown
37 lines
717 B
Markdown

|
|
|
|
<div align="center">
|
|
<h1>Nuxt Mongoose</h1>
|
|
|
|
A Nuxt module for simplifying the use of Mongoose in your project.
|
|
</div>
|
|
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
npx nuxi@latest module add nuxt-mongoose
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Setup
|
|
|
|
Add `nuxt-mongoose` to the `modules` section of your `nuxt.config.ts` file.
|
|
|
|
```ts
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
'nuxt-mongoose',
|
|
],
|
|
})
|
|
```
|
|
|
|
### Configuration
|
|
|
|
For detailed [configuration](https://docs.arashsheyda.me/nuxt-mongoose/getting-started/configuration) and usage instructions, please refer to our [documentation](https://docs.arashsheyda.me/nuxt-mongoose).
|
|
|
|
## License
|
|
|
|
[MIT License](./LICENSE)
|