Preset files are not allowed to export objects

前端 未结 10 1026
梦如初夏
梦如初夏 2020-11-30 01:18

I have a carousel file in which I want to get index.js and build block.build.js, so my webpack.config.js is:



        
10条回答
  •  悲&欢浪女
    2020-11-30 02:00

    It happened to me and a simple solution for me was to uninstall babel-loader@8^ and @babel/core:

    npm uninstall --save babel-loader
    npm uninstall --save @babel/core
    

    … and then to install version 7 babel-loader:

    npm install --save-dev babel-loader@^7
    

提交回复
热议问题