# Missing module

Resolve errors related to a missing request context.

> **Error**
>
> Croct's request context is missing. Make sure the @croct/plug-nuxt module is installed in your nuxt.config.ts.

This error occurs when the Nuxt module is not registered in your project configuration.

To fix this, add `@croct/plug-nuxt` to the `modules` array in your `nuxt.config.ts`:

```ts
export default defineNuxtConfig({
  modules: ['@croct/plug-nuxt'],
})
```

For more details, see the [manual installation](/reference/sdk/nuxt/manual-installation#register-module) guide.
