From 5c9fbf504388436aa0e1284ce8d32aabde4ad1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Mon, 22 Jan 2024 15:46:39 +0300 Subject: [PATCH] Prevent fingerprinting for filenames from config Ember has no way of finding them in the code and thus cannot turn hrefs into fingerprinted URLs --- ember-cli-build.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ember-cli-build.js b/ember-cli-build.js index c966bb7..f983dc5 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -29,6 +29,9 @@ module.exports = function(defaults) { path: "empty" // needed for kosmos-schemas dependency } } + }, + fingerprint: { + exclude: [ 'img/icon-btc' ] } });