我正在尝试使用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