遇到了一个问题

来源:2-1 vue-loader+webpack项目配置

qq_慕仔8034878

2020-01-15 10:21

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

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

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

   For typos: please correct them.

   For loader options: webpack >= v2.0.0 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: {

           enrty: …

         }

       })

     ]

 - configuration.module should be an object.

   -> Options affecting the normal modules (`NormalModuleFactory`).


写回答 关注

1回答

  • weixin_慕雪3189923
    2020-01-15 17:22:56

    Webpack配置信息有误- configuration has an unknown property 'enrty'. ,enrty==>entry

Vue+Webpack打造todo应用

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

84618 学习 · 812 问题

查看课程

相似问题