mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 12:12:53 +00:00
28 lines
545 B
JavaScript
28 lines
545 B
JavaScript
|
|
/** @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;
|