Reputation: 1
In webpack bundle file, I don't understand the '!' means what, it seems not separator of path. Can someone tell me?
The simple example such like: "./node_modules/css-loader/dist/cjs.js!./src/index.css"
Upvotes: 0
Views: 29
Reputation: 1
// supplement expample
/***/ "./node_modules/css-loader/dist/cjs.js!./src/index.css":
/*!*************************************************************!*\
!*** ./node_modules/css-loader/dist/cjs.js!./src/index.css ***!
\*************************************************************/
/***/ (function(module, __webpack_exports__, __webpack_require__) {
enter code here
eval(".....");
/***/ }),
Upvotes: 0