使Webpack捆绑包在文件顶部需要本机节点模块

时间:2018-12-22 02:21:54

标签: javascript node.js webpack

我有一个看起来像这样的捆绑包。捆绑软件文件不包含path的代码,该文件引用了本机节点模块。

是否可以在文件顶部使用require调用,而将module.exports = require("path");设置为module.exports = path;

...
/* 0 */,
/* 1 */,
/* 2 */
/***/ (function(module, exports, __webpack_require__) {

const path = __webpack_require__(3);

module.exports = path.join('example', 'thomas');

/***/ }),
/* 3 */
/***/ (function(module, exports) {

module.exports = require("path");

/***/ })
/******/ ]);

0 个答案:

没有答案