Files
flowsint/flowsint-web/next.config.js
2025-03-30 21:23:41 +02:00

18 lines
332 B
JavaScript

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