Files
zitadel/apps/login/next.config.js
2023-05-17 13:46:44 +02:00

27 lines
535 B
JavaScript
Executable File

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
experimental: {
serverActions: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "zitadel.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "zitadel.cloud",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig;