Failed to load resource: the server responded with a status of 404 ()
because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
css와 js를 제대로 적용이 안되는 현상 발생
Django Terminal에서도 아래와 같은 메시지 발생
Not Found: /Project_App/static/css/test.css
Not Found: /Project_App/static/js/test.js
아래와 같이 링크를 넣어서 Error 발생
<link rel="stylesheet" href="static/css/test.css">
<script src="static/js/test.js"></script>
경로 지정이 잘못되어 생기는 Error로 아래와 같이 설정하면
정상적으로 인식
<link rel="stylesheet" href="/static/css/test.css">
<script src="/static/js/test.js"></script>