Files
website/apps/website/next.config.js
Mauricio Siu ab305f1c11 refactor: update Next.js configuration and blog post styling
- 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.
2025-12-17 23:34:05 -06:00

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;