Frontend/next.config.mjs
Liam 57a45a4c05
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m10s
generate metadata for the documentation page
2024-04-20 00:50:59 +01:00

23 lines
425 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)