Skip to content

Instantly share code, notes, and snippets.

@typeoneerror
Created February 26, 2016 17:56
Show Gist options
  • Save typeoneerror/5f2431500f082dd0c812 to your computer and use it in GitHub Desktop.
Save typeoneerror/5f2431500f082dd0c812 to your computer and use it in GitHub Desktop.
var isDevelopmentLikeBuild = env.indexOf('development') > -1;
var fingerprintOptions = {
enabled: true,
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'svg'],
generateAssetMap: true,
prepend: config.APP.CDN_URL
};
if (isDevelopmentLikeBuild) {
_.merge(fingerprintOptions, {
customHash: null,
generateAssetMap: false,
exclude: [
'icons',
'images/integrations',
'images/loaders',
'images/misc'
]
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment