0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Django:staticファイルが読み込めない

Posted at

構成

  • djnagoのバージョン: 5.0.2
  • pythonのバージョン: 3.11.8

問題

{% load static %}しているが、staticファイルを読み込んでも404エラーが表示される

確認したこと

  • staticファイルの位置
  • 読み込んでいるファイルの名前間違いがないか
  • setting.pyにあるSTATIC_URLの記述がSTATIC_URL = '/static/'になっているか

必要だったもの

setting.pyにSTATICFILES_DIRSの記述が必要だった

STATIC_URL = '/static/'

# staticはここの記述も必要
STATICFILES_DIRS = [
    BASE_DIR / "static"
]

→ 読み込めるようになった

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?