Files
GibSend/apps/marketing/next.config.js
T
KM Koushik bd78ed9ad9 feat: add Sayr bronze sponsor (#383)
* feat: add Sayr bronze sponsor

* fix: correct Sayr black logo URL

* update ui
2026-03-28 08:57:51 +11:00

26 lines
570 B
JavaScript

import createMDX from "@next/mdx";
/** @type {import("next").NextConfig} */
const config = {
// Use static export in production by default; keep dev server dynamic
output: "export",
images: {
// Required for static export if using images
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "cdn.doras.to",
pathname: "/Sayr/**",
},
],
},
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
};
const withMDX = createMDX({
extension: /\.(md|mdx)$/,
});
export default withMDX(config);