gpt4 book ai didi

javascript - 如何将 React Epub 阅读器与 next js 集成

转载 作者:行者123 更新时间:2023-12-05 06:54:36 27 4
gpt4 key购买 nike

我正在尝试整合 react epub reader 使用 Next Js 但遇到一个错误并且与 React js 配合良好,我需要你的帮助将 epub 阅读器与 next js 集成

error

我的代码

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>
)
}

最佳答案

这个问题可以通过转译 react-readerepubjs 模块(几个月前导出为 ESM)来解决。

例如,在 Next.js 配置中使用 next-transpile-modules:

// next.config.js
const withTM = require("next-transpile-modules")(["react-reader", "epubjs"]);

module.exports = withTM({/* custom config */});

关于javascript - 如何将 React Epub 阅读器与 next js 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65502790/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com