Skip to content

Commit

Permalink
Merge pull request #16 from varun-raj/feat-smart-merge
Browse files Browse the repository at this point in the history
fix: disabled nextjs image optimization due to sharp dependencies
  • Loading branch information
varun-raj authored Aug 24, 2024
2 parents f1f1e8f + c7212cc commit e165d74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
output: 'standalone'
output: 'standalone',
images: {
unoptimized: true,
}
};

export default nextConfig;
2 changes: 1 addition & 1 deletion src/components/shared/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Sidebar() {
<div className="flex h-full max-h-screen flex-col gap-2">
<div className="flex h-14 items-center justify-between border-b px-4 lg:h-[60px] lg:px-6">
<Link href="/" className="flex items-center gap-2 font-semibold">
<Image
<img
src="/favicon.png"
width={32}
height={32}
Expand Down

0 comments on commit e165d74

Please sign in to comment.