Skip to content

Commit

Permalink
fix: enable prod builds (#1191)
Browse files Browse the repository at this point in the history
- we need to not fingerprint assets for now or it will break the theme'ing (we'll fix that later)
- we also need to not strip the data test selectors because test cafe relies on them
  • Loading branch information
jaredgalanis authored Jun 22, 2023
1 parent 075c0f7 commit 605556b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ module.exports = function (defaults) {
},
},
fingerprint: {
exclude: ['branding.css', 'error-icon.png', 'fullSizeLogo.png'],
enabled: false,
},
'ember-test-selectors': {
strip: false,
},
});

Expand Down

0 comments on commit 605556b

Please sign in to comment.