22 lines
462 B
JavaScript
22 lines
462 B
JavaScript
const withMDX = require("@next/mdx")();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Configure `pageExtensions` to include MDX files
|
|
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
|
|
// Optionally, add any other Next.js config below
|
|
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "images.unsplash.com",
|
|
},
|
|
{
|
|
hostname: "*.amazonaws.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = withMDX(nextConfig);
|