下一步构建脚本失败

时间:2018-09-24 15:11:20

标签: node.js babel next

我想用express转换我的自定义服务器文件以使用ES2017 +语法。我尝试了[这个问题] [1],但是我在build:next脚本上遇到了一个错误:

{ Error: (client) ./src/client/pages/index.js
Module build failed: TypeError: programPath.hub.addHelper is not a function

我的.babelrc文件:

{
    "env": {
        "development": {
            "presets": [
                "next/babel"
            ]
        },
        "production": {
            "presets": [
                "next/babel",
                [
                    "@babel/env",
                    {
                        "targets": {
                            "node": "8"
                        }
                    }
                ]
            ]
        }
    }
}

0 个答案:

没有答案