그러나 배포 후 소셜 로그인을 했을 때 보이는 어플리케이션이 저러하며, 매니페스트를 찾지 못하는 문제가 발생하고 있습니다.
콘솔 로그에는
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.
FROM node:latest as builder
WORKDIR /app
COPY package.json .
COPY package-lock.json .
COPY . .
RUN npm install
RUN npm run build
# nginx 이미지를 사용합니다. 뒤에 tag가 없으면 latest 를 사용합니다.
FROM nginx
COPY --from=builder /app/dist /usr/share/nginx/html
# container 실행 시 자동으로 실행할 command. nginx 시작함
CMD ["nginx", "-g", "daemon off;"]