TypeError: SuppressChunksPlugin is not a constructor,如何克服这是一个 webpack?

Posted

技术标签:

【中文标题】TypeError: SuppressChunksPlugin is not a constructor,如何克服这是一个 webpack?【英文标题】:TypeError: SuppressChunksPlugin is not a constructor, how to overcome this is a webpack? 【发布时间】:2018-01-22 04:46:47 【问题描述】:
  new SuppressChunksPlugin([
    ^

TypeError: SuppressChunksPlugin 不是构造函数 在对象。 (/Users/rohit/WebstormProjects/myProjectStructure/webpack.config.js:80:9) 在 Module._compile (module.js:570:32) 在 Object.Module._extensions..js (module.js:579:10) 在 Module.load (module.js:487:32) 在 tryModuleLoad (module.js:446:12) 在 Function.Module._load (module.js:438:3) 在 Module.require (module.js:497:17) 在需要(内部/module.js:20:19) 在 requireConfig (/usr/local/lib/node_modules/webpack/bin/convert-argv.js:97:18) 在 /usr/local/lib/node_modules/webpack/bin/convert-argv.js:104:17

以下是网页配置文件。

var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var SuppressChunksPlugin = require('suppress-chunks-webpack-plugin');



module.exports = 
    context: path.resolve(__dirname, './src'),
  entry: 
        blitz: './blitz.js',


  ,
  output: 
    path: path.resolve(__dirname, './dist/assets'),
    filename: '[name].bundle.js'

    ,


    module: 


       rules: [
            
            test: /\.less$/,
            use: ExtractTextPlugin.extract(
                // use style-loader in development
                fallback: 'style-loader',
                use: 'css-loader?minimize!less-loader'

              )
            ,

           
               test: /\.css$/,
               use: ExtractTextPlugin.extract(
                   fallback: 'style-loader',
                   use:'css-loader?minimize'

               )
           
       ]
    ,
    plugins:[
        new ExtractTextPlugin('[name].css'),
        new SuppressChunksPlugin([
            name: 'blitz', match: /\.js$/,

        ])
    ]
;

【问题讨论】:

你能发布你的 webpack.config.js 文件吗? 您好,网络配置文件也已更新。 【参考方案1】:

suppress-chunks-webpack-plugin 使用 ES modules and only has a default export(另请参阅转译的源代码 unpkg - suppress-chunks-webpack-plugin)。

要将它与 Node 的 require 一起使用,您需要访问 default 属性。

var SuppressChunksPlugin = require('suppress-chunks-webpack-plugin').default;

【讨论】:

终于可以使用默认导出了,非常感谢。

以上是关于TypeError: SuppressChunksPlugin is not a constructor,如何克服这是一个 webpack?的主要内容,如果未能解决你的问题,请参考以下文章

反应本机获取多标记[未处理的承诺拒绝:TypeError:TypeError:未定义不是对象(评估'this.state.markers.map

Django TypeError - TypeError: issubclass() arg 1 必须是一个类

pyspark:TypeError:'float'对象不可迭代

Python 3.8 TypeError: can't concat str to bytes - TypeError: a bytes-like object is required, not 's

TypeError: key 必须是一个字符串,一个缓冲区或一个对象在 typeError 与 GCP 文件存在

TypeError: jQueryxxxxxx 不是函数