Frontend/next.config.mjs

23 lines
424 B
JavaScript

import createMDX from '@next/mdx'
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.fascinated.cc",
pathname: "/**",
},
{
protocol: "https",
hostname: "api.mcutils.xyz",
pathname: "/**",
},
],
},
};
export default createMDX()(nextConfig)