mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
chore: bump fumadocs (#4144)
This commit is contained in:
60
docs/next.config.js
Normal file
60
docs/next.config.js
Normal file
@@ -0,0 +1,60 @@
|
||||
import { createMDX } from "fumadocs-mdx/next";
|
||||
|
||||
const withMDX = createMDX();
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const config = {
|
||||
async rewrites() {
|
||||
return [
|
||||
{
|
||||
source: "/docs/:path*.mdx",
|
||||
destination: "/llms.txt/:path*",
|
||||
},
|
||||
];
|
||||
},
|
||||
redirects: async () => {
|
||||
return [
|
||||
{
|
||||
source: "/docs",
|
||||
destination: "/docs/introduction",
|
||||
permanent: true,
|
||||
},
|
||||
{
|
||||
source: "/docs/examples",
|
||||
destination: "/docs/examples/next-js",
|
||||
permanent: true,
|
||||
},
|
||||
];
|
||||
},
|
||||
serverExternalPackages: [
|
||||
"ts-morph",
|
||||
"typescript",
|
||||
"oxc-transform",
|
||||
"@shikijs/twoslash",
|
||||
],
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
hostname: "images.unsplash.com",
|
||||
},
|
||||
{
|
||||
hostname: "assets.aceternity.com",
|
||||
},
|
||||
{
|
||||
hostname: "pbs.twimg.com",
|
||||
},
|
||||
{
|
||||
hostname: "github.com",
|
||||
},
|
||||
{
|
||||
hostname: "hebbkx1anhila5yf.public.blob.vercel-storage.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
reactStrictMode: true,
|
||||
typescript: {
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default withMDX(config);
|
||||
Reference in New Issue
Block a user