1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 01:10:52 +01:00

Fix nextjs image unoptimized

Bump the Next.js version so that build pass again after cloning.
In Next.js 12.3 the unoptimzed configuration became stable. Ref:
https://nextjs.org/blog/next-12-3#disable-image-optimization-stable
This commit is contained in:
Jan Willem Eriks 2022-09-28 21:09:46 +02:00
parent c8552da296
commit 5843df5715
2 changed files with 4 additions and 6 deletions

View File

@ -1,7 +1,5 @@
module.exports = { module.exports = {
experimental: { images: {
images: { unoptimized: true
unoptimized: true
}
} }
} }

View File

@ -124,7 +124,7 @@
"autoprefixer": "^10.4.8", "autoprefixer": "^10.4.8",
"electron": "^20.0.2", "electron": "^20.0.2",
"electron-builder": "^23.3.3", "electron-builder": "^23.3.3",
"next": "^12.2.5", "next": "^12.3.1",
"postcss": "^8.4.16", "postcss": "^8.4.16",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13", "prettier-plugin-tailwindcss": "^0.1.13",