Capital/next.config.mjs
2024-02-24 17:33:35 +08:00

15 lines
259 B
JavaScript

/** @type {import("next").NextConfig} */
const nextConfig = {
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
}
};
export default nextConfig;