From 605556b7d4c840d85b1cfe207d116a14262b2e9e Mon Sep 17 00:00:00 2001 From: Jared Galanis Date: Thu, 22 Jun 2023 14:24:41 -0400 Subject: [PATCH] fix: enable prod builds (#1191) - 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 --- ember-cli-build.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ember-cli-build.js b/ember-cli-build.js index b53ea823..01aa9b68 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -38,7 +38,10 @@ module.exports = function (defaults) { }, }, fingerprint: { - exclude: ['branding.css', 'error-icon.png', 'fullSizeLogo.png'], + enabled: false, + }, + 'ember-test-selectors': { + strip: false, }, });