.html
파일을 직접 페이지에 표시해야 할 일이 있습니다. 예를 들어, 문서 파일을 보여주거나 외부에서 전달된 결과 페이지를 그대로 렌더링해야 하는 경우가 있을 수 있습니다.
이번 글에서는 public
폴더에 있는 파일들은 정적인 자산(static asset)으로 처리되며, 브라우저에서 직접 접근할 수 있습니다.
예를 들어 프로젝트 구조가 아래와 같다고 해보겠습니다:my-app/
├─ public/
│ └─ static-page.html
├─ app/
│ └─ html-viewer/page.tsx
http://localhost:3000/static-page.html
주소로 접속하면 HTML 파일이 직접 로드됩니다.
그럼 이제 이 HTML 파일을 Next.js 페이지 내부에서 iframe을 통해 보여주는 방법을 알아보겠습니다.// app/html-viewer/page.tsx
export default function HtmlViewerPage() {
return (
<div style={{ width: '100%', height: '100vh' }}>
<iframe
src="/static-page.html"
width="100%"
height="100%"
style={{ border: 'none' }}
title="Static HTML Page"
/>
</div>
);
}
app/html-viewer
경로로 접근했을 때, public/static-page.html
파일의 내용을 iframe을 통해 브라우저에 렌더링하게 됩니다.public
폴더에 업로드하면 iframe을 통해 쉽게 웹 페이지에서 보여줄 수 있습니다.my-app/
├─ public/
│ └─ my-pdf.html
├─ app/
│ └─ pdf-viewer/page.tsx
// app/pdf-viewer/page.tsx
export default function PdfViewerPage() {
return (
<div style={{ width: '100%', height: '100vh' }}>
<iframe
src="/my-pdf.html"
width="100%"
height="100%"
style={{ border: 'none' }}
title="Converted PDF"
/>
</div>
);
}
/images/test.png
형태)로 수정해주는 것이 좋습니다.public
폴더에 HTML 파일을 넣고 iframe을 사용해 렌더링