Change start page from index.html

Right now I use Index.html as my main page and then route via the bottom navbar, how do I start my app with a page other than index.html

You need to enable pushState and configure it on your main view to be able to navigate the app by browser URL

Ok, but im not using views but separate pages, how would I get my main page to redirect on startup

something like?

window.location.href = 'other-page.html';
1 Like