Skip to content

v3.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 25 Oct 15:41
c8f6026

Breaking Changes

  • For people importing from OpenNext in their custom wrapper, all the overrides can now be found under @opennextjs/aws/overrides
  • There is a new install option available for every function in your open-next.config.ts including the image optimization function. For image optimization it replace the old arch option with the new install options. Here is an example to install sharp for x64 :
imageOptimization: {
  install: {
    packages: ["[email protected]"],
    arch: "x64"
  }
},

Changes