From 83320c2868d0b60076ede0eab33934806eb8f1de Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 3 Apr 2017 14:31:28 -0400 Subject: [PATCH] Have CDN use be off by default We only use the CDN now for testing and local development, and having it on by default breaks when doing initial setup for QE behind a corporate firewall that doesn't allow loading of the external libraries we need --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index d8482b59f..57dc1342b 100644 --- a/config.py +++ b/config.py @@ -85,7 +85,7 @@ class DefaultConfig(object): # If true, CDN URLs will be used for our external dependencies, rather than the local # copies. - USE_CDN = True + USE_CDN = False # Authentication AUTHENTICATION_TYPE = 'Database'