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'));
// 주어진 폴더의 절대경로를 가상 경로로 접근하게 함
// 디렉터리의 하위의 파일들에 적용됨
'🌼🌻' 카테고리의 다른 글
[Ubuntu] 환경 변수 경로 (0) | 2021.03.17 |
---|---|
[Windows] 배치파일 실행 시 관리자 권한 얻기 (0) | 2020.11.26 |
[Linux] IP주소 확인 (0) | 2020.11.19 |
[Apache2.4] conf 파일 적용 명령어 (0) | 2020.11.19 |
[C++] template 사용할 때 [LNK1120] n개의 확인할 수 없는 외부 참조입니다. 해결법 (1) | 2019.02.18 |