My RA project renders fine when deploying locally, however, when I copy my build directory to an S3 bucket for deployment, it renders all messed up. Sometimes it works, but most of the time it renders like the below image. It works fine in both environments with AOR.
Environment
React-admin version:2.0.3 Last version that did not exhibit the issue (if applicable): React version:16.4.1 Browser:Chrome/Safari
Thanks so much @Kmaschta saved me hours of searching.
I was not only getting the issue shown above... but when I hit the chrome refresh, the application would reload on the far left of the browser with no means of getting there.
I looked at the react-admin issue above react-admin 1782 which was an issue with the dependency given in package.json and internal @material-ui dependency of react-admin
I am editing my answer to show the dependencies with latest versions due to @material-ui 12621 :
There is an issue with the production build if you have a different version of
@material-ui
in your dependencies. And it will be fixed in the next version.Here is the full issue: https://github.com/marmelab/react-admin/issues/1782
Meanwhile, you can write a workaround (also available in the issue): write your own class generator for JSS.
And wrap the admin with a JSSProvider:
It should fix your CSS issue, if it's related to JSS classes minification and Material-UI.