Files
zitadel/apps/login/next.config.js

21 lines
451 B
JavaScript
Raw Normal View History

2023-04-03 13:39:51 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
experimental: {
serverActions: true,
2023-04-03 13:39:51 +02:00
},
images: {
remotePatterns: [
2023-05-23 10:12:19 +02:00
{
protocol: "https",
hostname: process.env.ZITADEL_API_URL.replace("https://", ""),
port: "",
pathname: "/**",
},
2023-04-03 13:39:51 +02:00
],
},
};
module.exports = nextConfig;