spomeni/next.config.ts
2026-06-20 18:17:30 +02:00

19 lines
408 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: process.env.S3_ENDPOINT?.replace("https://", "") || "",
},
{
protocol: "http",
hostname: process.env.S3_ENDPOINT?.replace("http://", "") || "",
},
],
},
};
export default nextConfig;