Skip to content

Commit

Permalink
hgfd
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Aug 26, 2024
1 parent c8a4172 commit 61707f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/blog/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { notFound } from 'next/navigation';
interface BlogPostPageProps {
params: {
id: string;
slug: string;

};
}

Expand Down
7 changes: 3 additions & 4 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/** @type {import('next').NextConfig} */

const nextConfig = {

images: {
domains: ['images.unsplash.com'], // Allow images from specific domains
domains: ['images.unsplash.com'],
},
webpack: (config) => {
config.cache = false; // Disable cache for webpack builds
config.cache = false;
return config;
},
};
Expand Down

0 comments on commit 61707f8

Please sign in to comment.