Webpack and Express - Critical Dependencies Warning

后端 未结 3 803
执笔经年
执笔经年 2020-12-14 02:10

I have the following webpack.config.ts:

var webpack = require( \'webpack\' );
var path = require( \'path\' );

module.exports = {

  entry: [
           


        
3条回答
  •  爱一瞬间的悲伤
    2020-12-14 02:44

    Instead of excluding all of the npm dependencies to be bundled with nodeExternals you can also exclude only express by natively requiring it by replacing

    import express from 'express';
    // Or
    const express = require('express');
    

    To

    const express = __non_webpack_require__('express');
    

    That will suppress the warning caused by express

提交回复
热议问题