How i can create different web pages for mobile and desktop browsers?
like this structure:
component-logic.js
component-template-mobile.html
component-template-desktop.html
To phone browser given only this files: component-logic.js, component-template-mobile.html
To desktop browser given only this files: component-logic.js component-template-desktop.html files
I not want the html and css code of the desktop version to load if a user opens the site by the phone. This is the basic thing webpack can do. Can’t an isomorphic meteor do this?