In my CSS file, I've included an external font from Google Font using the @import rule.
styles.css
/* You can use @import. r.js will handle merging them during the build process */
@import "../vendor/bootstrap/css/bootstrap.css"; //this has been included
@import url(http://fonts.googleapis.com/css?family=Chewy); //will this be included as well?
...
Will r.js include and optimize the remote font file? The documentation for r.js is not very detailed in terms of its features and settings, or am I overlooking something? Should I adjust my build configuration to include the remote/cdn file?