继ZEIT for next.js的入门示例后,我收到此错误:
error in ./pages/index.js
Module build failed: ReferenceError: [BABEL] /Users/Projects/nextDemo/pages/index.js: Using removed Babel 5 option: /Users/Projects/.babelrc.optional - Put the specific transforms you want in the `plugins` option
这是什么错误 - 它是否试图使用我全球安装的babel?是否有版本不匹配或我应该做的更新?
这是我到达这里的基本步骤:
$ npm install next --save
$ mkdir pages
//pages/index.js:
import React from 'react'
export default () => <div>Hello world!</div>
Add a script to the package.json like this:
{
"scripts": {
"dev": "next"
}
}
$ npm run dev
和已安装的软件包:
└─┬ next@1.2.3
├── ansi-html@0.0.6
├── babel-core@6.18.2
├── babel-generator@6.19.0
├── babel-loader@6.2.8
├── babel-plugin-module-resolver@2.4.0
├── babel-plugin-react-require@3.0.0
├── babel-plugin-transform-async-to-generator@6.16.0
├── babel-plugin-transform-class-properties@6.19.0
├── babel-plugin-transform-object-rest-spread@6.19.0
├── babel-plugin-transform-runtime@6.15.0
├── babel-preset-es2015@6.18.0
├── babel-preset-react@6.16.0
├── babel-runtime@6.18.0
├── cross-spawn@5.0.1
├── del@2.2.2
├── domready@1.0.8
├── friendly-errors-webpack-plugin@1.1.1
├── glamor@2.20.8
├── glob-promise@2.0.0
├── htmlescape@1.1.1
├── is-windows-bash@1.0.2
├── json-loader@0.5.4
├── loader-utils@0.2.16
├── minimist@1.2.0
├── mkdirp-then@1.2.0
├── mz@2.6.0
├── path-match@1.2.4
├── react@15.4.1
├── react-dom@15.4.1
├── react-hot-loader@3.0.0-beta.6
├── read-pkg-up@2.0.0
├── send@0.14.1
├── source-map-support@0.4.6
├── strip-ansi@3.0.1
├── url@0.11.0
├── webpack@1.13.3
├── webpack-dev-middleware@1.8.4
├── webpack-hot-middleware@2.13.2
└── write-file-webpack-plugin@3.4.2
答案 0 :(得分:0)
它使用父目录because:
中的.babelrc
文件
Babel会在正在编译的文件的当前目录中查找.babelrc。如果一个不存在,它将沿目录树向上移动,直到找到.babelrc或带有&#34; babel&#34;:{}哈希的package.json。
使用&#34; babelrc&#34;:false来停止查找行为。