next.config.mjs — ui Source File
Architecture documentation for next.config.mjs, a javascript file in the ui codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR bfca19e3_c894_11ea_8857_c9f798f55726["next.config.mjs"] efcae8ce_9b24_f993_fa1a_e2ec496cd1bc["next"] bfca19e3_c894_11ea_8857_c9f798f55726 --> efcae8ce_9b24_f993_fa1a_e2ec496cd1bc style bfca19e3_c894_11ea_8857_c9f798f55726 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { createMDX } from "fumadocs-mdx/next"
/** @type {import('next').NextConfig} */
const nextConfig = {
devIndicators: false,
typescript: {
ignoreBuildErrors: true,
},
outputFileTracingIncludes: {
"/*": ["./registry/**/*"],
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
{
protocol: "https",
hostname: "avatar.vercel.sh",
},
],
},
experimental: {
turbopackFileSystemCacheForDev: true,
},
redirects() {
return [
// Form redirects to /docs/forms.
{
source: "/docs/components/form",
destination: "/docs/forms",
permanent: true,
},
{
source: "/docs/components/radix/form",
destination: "/docs/forms",
permanent: true,
},
{
source: "/docs/components/base/form",
destination: "/docs/forms",
permanent: true,
},
// Component redirects (default to radix).
{
source: "/docs/components/:name((?!radix|base|form)[^/]+)",
destination: "/docs/components/radix/:name",
permanent: false,
},
{
source: "/docs/components/:name((?!radix|base|form)[^/]+).md",
destination: "/docs/components/radix/:name.md",
permanent: false,
},
// Other redirects.
// ... (66 more lines)
Domain
Subdomains
Dependencies
- next
Source
Frequently Asked Questions
What does next.config.mjs do?
next.config.mjs is a source file in the ui codebase, written in javascript. It belongs to the DocumentationAtlas domain, Changelog subdomain.
What functions are defined in next.config.mjs?
next.config.mjs defines 2 function(s): nextConfig.redirects, nextConfig.rewrites.
What does next.config.mjs depend on?
next.config.mjs imports 1 module(s): next.
Where is next.config.mjs in the architecture?
next.config.mjs is located at apps/v4/next.config.mjs (domain: DocumentationAtlas, subdomain: Changelog, directory: apps/v4).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free