summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2013-08-19 09:51:32 -0500
committerGerman M. Bravo <german.mb@deipi.com>2013-08-19 09:51:32 -0500
commita017fe61c0fac254f64b3df3d074f3ecb02952ff (patch)
tree1b872e5eb872c1ccd0c847f7c591101e6b8c29db
parent9b8fff5a4dadfe77ce42dd228937d8f34dd06772 (diff)
downloadpyscss-a017fe61c0fac254f64b3df3d074f3ecb02952ff.tar.gz
Assets and static default urls are relative now
-rw-r--r--scss/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/config.py b/scss/config.py
index 11d2e19..345307e 100644
--- a/scss/config.py
+++ b/scss/config.py
@@ -12,8 +12,8 @@ ASSETS_ROOT = None
# Cache files path, where cache files are saved (defaults to ASSETS_ROOT):
CACHE_ROOT = None
# Urls for the static and assets:
-STATIC_URL = '/static/'
-ASSETS_URL = '/static/assets/'
+STATIC_URL = 'static/'
+ASSETS_URL = 'static/assets/'
VERBOSITY = 1
DEBUG = 0