mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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 path = require("path");
|
||||
|
||||
const extraImageDomains = (process.env.NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS ?? "")
|
||||
.split(",")
|
||||
.filter((domain) => domain.length > 0);
|
||||
|
||||
const nextConfig = {
|
||||
reactStrictMode: false,
|
||||
swcMinify: true,
|
||||
images: {
|
||||
domains: [
|
||||
"vinci-web.s3.amazonaws.com",
|
||||
"planefs-staging.s3.ap-south-1.amazonaws.com",
|
||||
"planefs.s3.amazonaws.com",
|
||||
"planefs-staging.s3.amazonaws.com",
|
||||
"images.unsplash.com",
|
||||
"avatars.githubusercontent.com",
|
||||
"localhost",
|
||||
...extraImageDomains,
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "**",
|
||||
},
|
||||
],
|
||||
unoptimized: true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user