The documentation for framer-motion indicates that the MotionConfig provider component can take a property called reducedMotion that allows for global configuration of if motion animations should work or not depending on browser preference.
https://www.framer.com/docs/motion-config/#props
Looking at the code for the component, it appears this functionality was never actually implemented. The only way to customize motion behavior at the moment is the useReducedMotion hook, which works but is cumbersome to put in every single component.
The documentation for framer-motion indicates that the
MotionConfigprovider component can take a property calledreducedMotionthat allows for global configuration of if motion animations should work or not depending on browser preference.https://www.framer.com/docs/motion-config/#props
Looking at the code for the component, it appears this functionality was never actually implemented. The only way to customize motion behavior at the moment is the
useReducedMotionhook, which works but is cumbersome to put in every single component.