Created
February 2, 2018 16:24
-
-
Save siakaramalegos/58cb50fe3c0ad3a622c65e3a30f34bed to your computer and use it in GitHub Desktop.
Loader for all favicon files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// favicons.js | |
// Require all files in the favicon directory | |
function requireAll(r) { r.keys().forEach(r); } | |
requireAll(require.context( | |
'../../favicons/', | |
true, | |
/\.(png|xml|ico|json)$/) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment