This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
imageify/next.config.js

30 lines
540 B
JavaScript

/** @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",
pathname: "/api/files/**",
},
],
},
};
module.exports = nextConfig;