How to make the app in browser use Android material design all time

I want to use the Ionic 2 app I build as web app (progressive web app). But I want to when build, it will ONLY use android material design. Right now in localhost by running Ionic serve, the result on my browser is random - sometimes it looks like Apple with tabs at the bottom, and sometimes it looks Android with tab up top.

How can I build the app to make sure the output www folder will ONLY use Android style. And I can deploy the build as a website (run on desktop with no Cordova stuffs)?

In the app.ts file, bootstrap it with the following options:
ionicBootstrap(MyApp,[],{ mode: 'md' });

1 Like