mirror of
https://github.com/trycua/computer.git
synced 2026-01-04 12:30:08 -06:00
29 lines
509 B
JavaScript
29 lines
509 B
JavaScript
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',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'starchart.cc',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'github.com',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|