Skip to content

Commit

Permalink
don't fingerprint pngs
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Oct 17, 2024
1 parent f44be2f commit f0b9bba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ module.exports = function (defaults) {
let app = new EmberAddon(defaults, {
// Add options here
snippetPaths: ['tests/dummy/snippets'],
snippetSearchPaths: ['tests/dummy/app']
snippetSearchPaths: ['tests/dummy/app'],
// don't fingerprint pngs
fingerprint: { extensions: ['js', 'css', 'map'] }
});

/*
Expand Down

0 comments on commit f0b9bba

Please sign in to comment.