Ionic v8 - remove back animation for IOS

Because of known problem for IOS, when user swipe to go back, and than page that is closing is showed for a sec and back animation is triggered, I added this code:

setupIonicReact({
  swipeBackEnabled: isPwa && !isIos,
  animated: !isIos,
})

that fix this issue for IOS. But I don’t like to disable all animations, is there any way to do this only for ‘going back’ to previous page?