(“ node_modules / next / types / index”)'没有兼容的呼叫签名

时间:2019-06-23 01:27:07

标签: reactjs typescript next.js

我正在尝试使用nextjs documentation中详细介绍的next.js设置自定义服务器,但是这次,我使用的是打字稿。我不断收到("node_modules/next/types/index")' has no compatible call signatures。看来我没有以正确的方式导入nextjs。我想念什么?

import "isomorphic-fetch";
import next from "next"; // I also tried import * as next from "next

const dev = (process as any).env.NODE_ENV !== "production";
const app = next({ dev });  // Typescript is complaining on this line.

我想念什么?

编辑:我正在使用最新版本的v8.1.1-canary.55 nextjs

1 个答案:

答案 0 :(得分:0)

似乎这是known issue。降级next^8.1.0可以解决此问题。