From 3de32ea0d66dfd9aa09980e0a2d09bb6d2a96a4a Mon Sep 17 00:00:00 2001 From: Omar Rodriguez Arenas Date: Thu, 22 Oct 2020 13:31:03 -0600 Subject: [PATCH] Add uat environment for different configurations --- config/branding.yml | 3 +++ config/webpacker.yml | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/config/branding.yml b/config/branding.yml index 6b9a0da658..a72e8752cf 100644 --- a/config/branding.yml +++ b/config/branding.yml @@ -72,5 +72,8 @@ stage: staging: <<: *defaults +uat: + <<: *defaults + production: <<: *defaults diff --git a/config/webpacker.yml b/config/webpacker.yml index 366fe40d00..463059e7cf 100644 --- a/config/webpacker.yml +++ b/config/webpacker.yml @@ -69,6 +69,15 @@ staging: # Cache manifest.json for performance cache_manifest: true +uat: + <<: *default + + # Production depends on pre-compilation of packs prior to booting for performance. + compile: false + + # Cache manifest.json for performance + cache_manifest: true + production: <<: *default