For a progressive web app based on Material UI (React) and built with Webpack, how do I properly include Roboto font(s) so that the app does not depend
You can also do it like it is documented in this issue: https://github.com/callemall/material-ui/issues/6256
npm install typeface-roboto --save
Then, in your index.js:
import 'typeface-roboto'
Works with webpack/create-react-app.