티스토리 뷰
카테고리 없음
[vite] Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec. 에러 해결 방법
YG - 96년생 , 강아지 있음, 개발자 희망 2024. 9. 28. 09:25
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.
vite에서 배포하고 /details/1, /edit/1 이런 :id를 받는 곳에서 새로고침을 하거나 새 탭으로 접속할 때 흰 화면이 나오면서 해당 에러가 나왔었다.
그래서 vercel 배포 문제인줄 알고 netlify로 바꾸기도 했었지만 그대로이길래 구글링을 통해서 해결방법을 찾았어요.
기존에는 base가 '.' 으로 되어있었는데 '/'으로 고치고 난 뒤 접속이 잘 되었습니다. 기본 값이 '/'라고 하니 오히려 아무것도 설정하지 않았으면 문제를 겪지 않았을텐데 아쉽네요 ㅎㅎ
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
return {
base: "/",
define: {
"process.env.VITE_DB_URL": JSON.stringify(env.VITE_DB_URL),
},
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
};
});
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- React
- nodejs
- javascript
- TopLayer
- 위코드
- 노마드코더
- 프론트앤드
- CLASS
- import/order
- 초보
- 아차산
- Storybook
- 프리온보딩
- electron
- NextRequest
- env
- 노개북
- 윤성우 열혈C프로그래밍
- nextjs
- jest
- 스토리 북
- error
- NextApiRequest
- C언어
- 원티드
- 북클럽
- createPortal
- WSL2
- 우아한테크코스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함