Skip to content

Commit d2d62ff

Browse files
committed
hotfix: disable nextjs image optim feature
1 parent e85a3b9 commit d2d62ff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

next.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import type { NextConfig } from "next"
33

44
const nextConfig: NextConfig = {
55
eslint: {
6-
ignoreDuringBuilds: true, // TODO: fixme
6+
ignoreDuringBuilds: true, // TODO: make me linting again
7+
},
8+
images: {
9+
unoptimized: true, // FIXME: bug on prod, images always empty, investigate later
710
},
811
experimental: {
912
serverActions: {

0 commit comments

Comments
 (0)