I am trying to integrate react epub reader with Next Js but getting one error and works well with react js, I need your help to integrate epub reader with next js
My code
import React from 'react';
import { ReactReader } from "react-reader";
export default function Home() {
return (
<div>
<div style={{ position: "relative", height: "330px" }}>
<ReactReader
url="./Boy without a name English.epub"
title={"Alice in wonderland"}
location={"epubcfi(/6/2[cover]!/6)"}
locationChanged={epubcifi => console.log(epubcifi)}
/>
</div>
</div>
)
}