i'm including external font css (Google Font) on my css file using @import
styles.css
/* Feel free to use @import. r.js will merge them, when building */
@import "../vendor/bootstrap/css/bootstrap.css"; //this is included
@import url(http://fonts.googleapis.com/css?family=Chewy); //would this be included?
...
would r.js include the remote file and optimize it? r.js doesn't have a full documentation on its switches and settings or I am just missing something? or i just reconfigure my build to include the remote/cdn file?