为了账号安全,请及时绑定邮箱和手机立即绑定

运行npm run dev 的时候,报得这个错

Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.

 - configuration has an unknown property 'devSever'. These properties are valid:

   object { amd?, bail?, cache?, context?, dependencies?, devServer?, devtool?, entry, externals?, loader?, module?, name?, node?, output?, parallelism?, performance?, plugins?, profile?, recordsInputPath?, recordsOutputPath?, recordsPath?, resolve?, resolveLoader?, stats?, target?, watch?, watchOptions? }

   For typos: please correct them.

   For loader options: webpack 2 no longer allows custom properties in configuration.

     Loaders should be updated to allow passing options via loader options in module.rules.

     Until loaders are updated one can use the LoaderOptionsPlugin to pass these options to the loader:

     plugins: [

       new webpack.LoaderOptionsPlugin({

         // test: /\.xxx$/, // may apply this only for some modules

         options: {

           devSever: ...

         }

       })

     ]

npm ERR! code ELIFECYCLE

npm ERR! errno 1

npm ERR! 01.webpack-study@1.0.0 dev2: `cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js`

npm ERR! Exit status 1

npm ERR!

npm ERR! Failed at the 01.webpack-study@1.0.0 dev2 script.

npm ERR! This is probably not a problem with npm. There is likely additional logging output above.


npm ERR! A complete log of this run can be found in:

npm ERR!     C:\Users\Administrator\AppData\Roaming\npm-cache\_logs\2018-08-19T08_33_01_555Z-debug.log


正在回答

2 回答

"configuration has an unknown property 'devSever'",这里很明确的说明了错误原因,在配置中使用了未知的属性“devSever”,正确的为 “devServer”。

1 回复 有任何疑惑可以回复我~

devSever 写错了,应该是


devServer


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Vue+Webpack打造todo应用
  • 参与学习       84606    人
  • 解答问题       787    个

用前端最热门框架Vue+最火打包工具Webpack打造todo应用

进入课程

运行npm run dev 的时候,报得这个错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信