码迷,mamicode.com
首页 > Web开发 > 详细

TypeError: CleanWebpackPlugin is not a constructor

时间:2019-06-08 13:17:35      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:ror   mina   single   style   报错   struct   html   dex   function   

在项目中引入clean-webpack-plugin打包后报错

new CleanWebpackPlugin(),
^

TypeError: CleanWebpackPlugin is not a constructor

项目写法:
引入: cnpm i  clean-webpack-plugin -D
webpack.config.js中
const CleanWebpackPlugin = require(‘clean-webpack-plugin‘)

plugins: [
    new CleanWebpackPlugin(),
    new HtmlWebpackPlugin({
        filename: ‘index.html‘,
        template: ‘./src/index.html‘
    })
],        

看了一下githup上的写法,现在新版本的clean-webpack-plugin引入已经改为const CleanWebpackPlugin require(‘clean-webpack-plugin);

所以修改引入写法就OK了

const {CleanWebpackPlugin} = require(‘clean-webpack-plugin‘)

plugins: [
    new CleanWebpackPlugin(),
    new HtmlWebpackPlugin({
        filename: ‘index.html‘,
        template: ‘./src/index.html‘
    })
],   

 

 

TypeError: CleanWebpackPlugin is not a constructor

标签:ror   mina   single   style   报错   struct   html   dex   function   

原文地址:https://www.cnblogs.com/steamed-twisted-roll/p/10990309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!