ledgerone_frontend/next.config.js
2026-03-18 13:02:58 -07:00

19 lines
329 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com"
},
{
protocol: "https",
hostname: "plus.unsplash.com"
}
]
}
};
module.exports = nextConfig;