python manage.py collecstatic 没有复制我的 .css 文件
python manage.py collecstatic isn't copying my .css file
我正在尝试使用 Django 中的静态文件。
我看了很多视频,我知道我觉得自己做得对。
以下是 settings.py
片段:
STATIC_URL = '/static/'
STATICFILES_DIR = (os.path.join(BASE_DIR, 'static'),)
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static_cdn')
我也已将此添加到 urls.py
:
if settings.DEBUG:
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
当我执行 collectstatic 时,它会从管理文件夹中复制所有这些。但它没有从静态文件夹复制我的 .css
文件。谁能告诉我我哪里做错了。
设置是 STATICFILES_DIRS
,带有 S,因为它是目录列表。
STATICFILES_DIRs = (os.path.join(BASE_DIR, 'static'),)
我正在尝试使用 Django 中的静态文件。
我看了很多视频,我知道我觉得自己做得对。
以下是 settings.py
片段:
STATIC_URL = '/static/'
STATICFILES_DIR = (os.path.join(BASE_DIR, 'static'),)
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static_cdn')
我也已将此添加到 urls.py
:
if settings.DEBUG:
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
当我执行 collectstatic 时,它会从管理文件夹中复制所有这些。但它没有从静态文件夹复制我的 .css
文件。谁能告诉我我哪里做错了。
设置是 STATICFILES_DIRS
,带有 S,因为它是目录列表。
STATICFILES_DIRs = (os.path.join(BASE_DIR, 'static'),)