--- 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 = { // ... user: { resolve: "@medusajs/user", options: { jwt_secret: process.env.JWT_SECRET, }, }, } ```