We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ea741 commit 36d0ecaCopy full SHA for 36d0eca
config/helpers.js
@@ -19,14 +19,6 @@ function root(args) {
19
return path.join.apply(path, [ROOT].concat(args));
20
}
21
22
-function checkNodeImport(context, request, cb) {
23
- if (!path.isAbsolute(request) && request.charAt(0) !== '.') {
24
- cb(null, 'commonjs ' + request); return;
25
- }
26
- cb();
27
-}
28
-
29
exports.hasProcessFlag = hasProcessFlag;
30
exports.isWebpackDevServer = isWebpackDevServer;
31
exports.root = root;
32
-exports.checkNodeImport = checkNodeImport;
0 commit comments