【菜鸟搭建react项目之路4】【webpack】options has an unknown property 'contentBase'.


报错信息:

[webpack-cli] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.
- options has an unknown property 'contentBase'. These properties are valid:

 

原因:

webpack配置代码:

devServer: {
    contentBase: __dirname,
  },

其实信息提示得挺明白了,就是contentBase这个属性不能用了。

 

解决方案:

因为contentBase已经弃用了,所以正确应该改为:

devServer: {
    // contentBase: __dirname,
    static: {
      directory: path.join(__dirname, "dist"),
    },
  },

 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM