diff --git a/arch/windows/splash.html b/arch/windows/splash.html
index a7f305e3a6b5496a859c597648c390a4fdce2e90..838bc51819281e5add242feec93db1d5616b5321 100644
--- a/arch/windows/splash.html
+++ b/arch/windows/splash.html
@@ -19,8 +19,8 @@
 
       <script src="cesium-desktop.js"></script>
 
-      <!-- Preload JS files here -->
+      <!-- Preload JS files here
       <script src="cesium/dist_js/cesium.js" async></script>
-      <script src="cesium/dist_js/vendor.js" async></script>
+      <script src="cesium/dist_js/vendor.js" async></script>-->
   </body>
 </html>
diff --git a/release.sh b/release.sh
index f87fcf656f780468037a353babc752aab856b13c..db4e320600332538efdadb5d1f74c2dfacc0c541 100755
--- a/release.sh
+++ b/release.sh
@@ -30,7 +30,16 @@ if [[ -z $TAG ]]; then
   exit 1
 fi
 
-# Force nodejs version to 6
+# Override with a local file, if any
+if [[ -f "${ROOT}/.local/env.sh" ]]; then
+  echo "Loading environment variables from: '.local/env.sh'"
+  source ${ROOT}/.local/env.sh
+  [[ $? -ne 0 ]] && exit 1
+else
+  echo "No file '${ROOT}/.local/env.sh' found. Will use defaults"
+fi
+
+# Force nodejs version
 if [[ -d "${NVM_DIR}" ]]; then
     . ${NVM_DIR}/nvm.sh
     nvm use ${NODEJS_VERSION}