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.
imageify/next.config.js
2022-11-19 10:45:04 +00:00

41 lines
856 B
JavaScript

const imageUrlParts = process.env.NEXT_PUBLIC_SITE_URL
? process.env.NEXT_PUBLIC_SITE_URL.split("://")
: "http://localhost:3000".split("://"); // To make tests pass
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
swcMinify: true,
optimizeFonts: true,
poweredByHeader: false,
experimental: {
// Will leave disabled for now as it causes
// cpu usage spikes when loading a page
//optimizeCss: true,
},
// compiler: {
// removeConsole: {
// exclude: ["error"],
// },
// },
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
port: "3000",
pathname: "/api/files/**",
},
{
protocol: imageUrlParts[0],
hostname: imageUrlParts[1].split(":")[0],
pathname: "/api/files/**",
},
],
},
};
module.exports = nextConfig;