Files
flowsint/next.config.js
2025-02-09 15:23:50 +01:00

14 lines
249 B
JavaScript

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