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:
parent
708afe2dc9
commit
83320c2868
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
|
Reference in a new issue