강사님 교육내용대로 public폴더를 만들고 그안에 main.css를 생성하고,
list.ejs파일 안에 아래와 같이 기입했습니다.
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/main.css" rel="stylesheet">
</head>
브라우저 console에 에러메시가 아래와 같이 확인 됩니다.
list:1 Refused to apply style from 'http://localhost:8080/main.css'
because its MIME type ('text/html') is not a supported stylesheet MIME type,
and strict MIME checking is enabled.
어떻게 하면 문제해결할 수 있을까요?