Skip to content

Commit e43c7bd

Browse files
committed
huh,,,
1 parent 456e514 commit e43c7bd

File tree

2 files changed

+111
-2
lines changed

2 files changed

+111
-2
lines changed

next.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3+
// you want a fully-static export, so keep this
34
output: 'export',
4-
images: { // disable Next’s image optimiser (not available in export mode)
5-
unoptimized: true
5+
6+
// ⬇️ tell Next.js to skip the Image Optimisation API entirely
7+
images: {
8+
unoptimized: true // <— key line
69
}
710
};
11+
812
export default nextConfig;

package-lock.json

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

0 commit comments

Comments
 (0)