Is there a way to prevent Webpack from renaming function names? I have a class named MenuBlocksMenuPage in my code:
import { MenuBlocksMenuPage } from "../pages/menu/blocks/menupage";
However, the compiled file turns this line into an unreadable string.
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_73__pages_menu_blocks_menupage__ = __webpack_require__(669);
My question is: Which option in Webpack can disable the renaming of classes or functions?