Files
Frontend/next.config.mjs

23 lines
425 B
JavaScript
Raw Normal View History

import createMDX from "@next/mdx";
2024-04-20 00:34:42 +01:00
2024-04-14 17:45:04 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
2024-04-14 18:46:37 +01:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.fascinated.cc",
pathname: "/**",
},
2024-04-14 19:55:07 +01:00
{
protocol: "https",
hostname: "api.mcutils.xyz",
pathname: "/**",
},
2024-04-14 18:46:37 +01:00
],
},
2024-04-14 17:45:04 +01:00
};
2024-04-20 00:34:42 +01:00
export default createMDX()(nextConfig)