I try to change theme following official doc, likes:
import { loadTheme as setup } from 'office-ui-fabric-react';
But this line will make the whole "office-ui-fabric-react" lib bundled by webpack. My app.js file is up to 3MB+.
Can I improve this? What is the best way to do it?
You should use :
import { loadTheme } from 'office-ui-fabric-react/lib/Styling';
Thanks for chiming in @cslecours. This should fix your issue @jayliang701, feel free to re-open the issue if it doesn't.
Thank you guys!
Most helpful comment
Thanks for chiming in @cslecours. This should fix your issue @jayliang701, feel free to re-open the issue if it doesn't.