Liam
57a45a4c05
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m10s
23 lines
425 B
JavaScript
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)
|