forked from github/plane
fix: next image fixes for selfhosted instances (#2642)
This commit is contained in:
parent
8919b724c5
commit
cc26f604aa
@ -3,23 +3,15 @@ require("dotenv").config({ path: ".env" });
|
|||||||
const { withSentryConfig } = require("@sentry/nextjs");
|
const { withSentryConfig } = require("@sentry/nextjs");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
|
||||||
const extraImageDomains = (process.env.NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS ?? "")
|
|
||||||
.split(",")
|
|
||||||
.filter((domain) => domain.length > 0);
|
|
||||||
|
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
reactStrictMode: false,
|
reactStrictMode: false,
|
||||||
swcMinify: true,
|
swcMinify: true,
|
||||||
images: {
|
images: {
|
||||||
domains: [
|
remotePatterns: [
|
||||||
"vinci-web.s3.amazonaws.com",
|
{
|
||||||
"planefs-staging.s3.ap-south-1.amazonaws.com",
|
protocol: "https",
|
||||||
"planefs.s3.amazonaws.com",
|
hostname: "**",
|
||||||
"planefs-staging.s3.amazonaws.com",
|
},
|
||||||
"images.unsplash.com",
|
|
||||||
"avatars.githubusercontent.com",
|
|
||||||
"localhost",
|
|
||||||
...extraImageDomains,
|
|
||||||
],
|
],
|
||||||
unoptimized: true,
|
unoptimized: true,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user