Files
flowsint/flowsint-web/next.config.js
2025-02-27 23:23:34 +01:00

17 lines
306 B
JavaScript

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