Capital/next.config.mjs

15 lines
259 B
JavaScript
Raw Normal View History

2024-02-24 09:33:35 +00:00
/** @type {import("next").NextConfig} */
const nextConfig = {
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
}
};
2024-02-24 06:16:57 +00:00
export default nextConfig;