--- sidebar_label: "Module Options" --- import { Table } from "docs-ui" export const metadata = { title: `User Module Options`, } # {metadata.title} In this document, you'll learn about the options of the User Module. ## Module Options ```js title="medusa-config.js" const { Modules } = require("@medusajs/modules-sdk") // ... module.exports = defineConfig({ // ... modules: { [Modules.USER]: { resolve: "@medusajs/user", options: { jwt_secret: process.env.JWT_SECRET, }, }, }, }) ```