/** @type {import('next').NextConfig} */
const imageUrlParts = process.env.NEXT_PUBLIC_SITE_URL.split("://");
const nextConfig = {
reactStrictMode: true,
output: "standalone",
swcMinify: true,
optimizeFonts: true,
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
port: "3000",
pathname: "/api/files/**",
},
protocol: imageUrlParts[0],
hostname: imageUrlParts[1].split(":")[0],
port: "443",
],
};
module.exports = nextConfig;