First migration of readme files and doc files to the libraries.

This commit is contained in:
Morgan Dean
2025-06-11 11:41:07 -04:00
parent b8cc1d3e3c
commit e68e716f90
16 changed files with 1799 additions and 1 deletions

View File

@@ -1,10 +1,20 @@
import { createMDX } from 'fumadocs-mdx/next';
import { createMDX } from "fumadocs-mdx/next";
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
images: {
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: "https",
hostname: "img.shields.io",
},
],
},
};
export default withMDX(config);