Files
Rahoot/next.config.mjs
2024-09-22 14:16:10 +02:00

17 lines
290 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
}
export default nextConfig