[node js] css파일 읽기 / 정적파일 읽기
Refused to apply style from '...' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled. 에러 해결 var express = require('express'); var app = express(); app.use('/style', express.static(__dirname + '/style')); // 주어진 폴더의 절대경로를 가상 경로로 접근하게 함 // 디렉터리의 하위의 파일들에 적용됨