Files
zitadel/apps/login/next.config.js
2023-04-03 13:39:51 +02:00

28 lines
545 B
JavaScript
Executable File

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