Hi, Ionic starting to drive me crazy !
I build an app, everything works perfectly ! On android, with ionic serve … but I wanted to publish it online too. It’s not the first time I did that, I never had any issues. Impossible, white page.
So, I tried to create a new clean project with the blank template. If I run ionic build, and I publish the build folder ( with a “homepage”: “build/”, in the package.json ) I have any error message and a white page.
I spend my afternoon to try to find the issue, if I change the redirect from :
<Route exact path="/" render={() => <Redirect to="/home" />} />
to
<Route path="/" render={() => <Redirect to="/home" />} />
Everything works. Problems, I have a lot of routes in my apps, so impossible to remove the exact.
Do you have any idea ?
Thanks