Error reporting of require occurs during webpack packaging

Error description

Usually, problems often occur in the target: 'node' environment

There is a problem in the compiled file. Use require as follows:

// for example 1:
const reload = require('require-reload')(requireFunc)

// for example 2:
function main () {
    var data = require(dataPath)
}

An error will be reported when packing:

Critical dependency: require function is used in a way in which dependencies cannot be statically extracted
Critical dependency: the request of a dependency is an expression

Error resolution

Add the following code to the compiled file:

const requireFunc = typeof __webpack_require__=== 'function' ?__non_webpack_require__: require

(PS: the scheme was found in Du Niang, which is not original. Because the original text can not be found, you can record it yourself so that you can find it easily when you encounter a problem next time.)

Similar Posts: