webpack打包時報錯:Support for the experimental syntax 'classProperties' isn't currently enabled


在寫react項目創建class時使用了靜態屬性,但是在打包的時候報錯:

 根據報錯提示下載@babel/plugin-proposal-class-properties包,並在.babelrc文件中的"plugins"里添加一項"@babel/plugin-proposal-class-properties"

{
    "presets": ["@babel/preset-env", "@babel/preset-react"],
    "plugins": ["@babel/plugin-transform-runtime","@babel/plugin-proposal-class-properties"]
}

重新打包即可。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM