Skip to content

Commit

Permalink
feat(next.config.js): enable unoptimized images in Next.js configuration
Browse files Browse the repository at this point in the history
Enabling the unoptimized images feature in the Next.js configuration allows for faster build times and better performance by serving images in their original size without optimization.
  • Loading branch information
ktun95 committed Dec 4, 2024
1 parent 92369bf commit 7c3dbdc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/publication/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ const withTM = require("next-transpile-modules")([
module.exports = withTM({
basePath: base,
swcMinify: true,
images: {
unoptimized: true,
},
})

0 comments on commit 7c3dbdc

Please sign in to comment.