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: {
|
2023-05-17 13:46:44 +02:00
|
|
|
serverActions: true,
|
2023-04-03 13:39:51 +02:00
|
|
|
},
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
2023-04-28 10:16:04 +02:00
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "zitadel.com",
|
|
|
|
|
port: "",
|
|
|
|
|
pathname: "/**",
|
2023-04-03 13:39:51 +02:00
|
|
|
},
|
|
|
|
|
{
|
2023-04-28 10:16:04 +02:00
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "zitadel.cloud",
|
|
|
|
|
port: "",
|
|
|
|
|
pathname: "/**",
|
2023-04-03 13:39:51 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = nextConfig;
|