We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50fd71a commit c1f6f77Copy full SHA for c1f6f77
core/settings/base.py
@@ -142,3 +142,10 @@
142
access_type='offline',
143
)
144
145
+
146
+# Static
147
+STATIC_ROOT = "/static/"
148
+STATIC_URL = '/static/'
149
+STATICFILES_DIRS = [
150
+ os.path.join(BASE_DIR, '../static'),
151
+]
core/settings/local.py
@@ -1,6 +1,4 @@
1
from .base import *
2
3
-STATIC_URL = '/static-dev/'
4
-
5
# speed up dev appserver code change detection by ignoring a bunch of dirs
6
DJANGAE_RUNSERVER_IGNORED_DIR_REGEXES += ['^sitepackages$', '^tests$']
0 commit comments