mirror of
https://github.com/Dokploy/website.git
synced 2026-06-16 04:35:26 +02:00
- Replaced the deprecated 'domains' property with 'remotePatterns' in the Next.js configuration for image handling. - Adjusted the margin of the blog post link to improve layout consistency.
37 lines
655 B
JavaScript
37 lines
655 B
JavaScript
// Internationalization removed
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "static.ghost.org",
|
|
},
|
|
{
|
|
hostname: "testing-ghost-8423be-31-220-108-27.traefik.me",
|
|
},
|
|
{
|
|
hostname: "images.unsplash.com",
|
|
},
|
|
{
|
|
hostname: "www.gravatar.com",
|
|
},
|
|
{
|
|
hostname: "cms.dokploy.com",
|
|
},
|
|
],
|
|
// domains: [
|
|
// "static.ghost.org",
|
|
// "testing-ghost-8423be-31-220-108-27.traefik.me",
|
|
// "images.unsplash.com",
|
|
// "www.gravatar.com",
|
|
// "cms.dokploy.com",
|
|
// ],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|