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