Module Configuration

Detailed reference for nuxt-auto-crud module options, including schema pathing and authentication integration.

Reference guide for configuring the nuxt-auto-crud module within nuxt.config.ts. Includes details on schema introspection paths, authentication overrides, and default settings.

Configuration Example

export default defineNuxtConfig({
  autoCrud: {
    // Path to your database schema file (relative to project root)
    schemaPath: "server/db/schema", // default
    
    // Authentication configuration (see "Authentication Configuration" section)
    auth: {
        // ...
    }
  },
});