我想在 Next.js 中使用文件查看器,但出现此错误:
./public/pdf.pdf Module parse failed: Unexpected token (1:0) 你可能需要一个合适的加载器来处理这个文件类型,目前没有加载器被配置来处理这个文件。见
> %PDF-1.3
| %
|
我怎么解决这个问题?
我的代码:
import FileViewer from "react-file-viewer/src/components";
import pdf from "../../../public/pdf.pdf"
...(in component)
{openFileViewer ? <FileViewer fileType="pdf" filePath={pdf} /> : null}