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
This commit is contained in:
Joseph Schorr 2017-04-03 14:31:28 -04:00
parent 708afe2dc9
commit 83320c2868

View file

@ -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'