Skip to content

Commit 295a9a8

Browse files
committed
fix: disable image optimization
1 parent dab3852 commit 295a9a8

3 files changed

Lines changed: 49 additions & 46 deletions

File tree

next.config.ts

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

33
const nextConfig: NextConfig = {
4-
output: 'export'
4+
output: 'export',
5+
images: {
6+
unoptimized: true
7+
}
58
};
69

710
export default nextConfig;

package-lock.json

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
},
1111
"dependencies": {
1212
"@next/third-parties": "^16.1.1",
13-
"next": "16.1.1",
14-
"react": "19.2.3",
15-
"react-dom": "19.2.3"
13+
"next": "^16.1.4",
14+
"react": "^19.2.3",
15+
"react-dom": "^19.2.3"
1616
},
1717
"devDependencies": {
1818
"@tailwindcss/postcss": "^4",

0 commit comments

Comments
 (0)