1234567891011121314151617181920212223242526272829303132 |
- /*
- * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
- * This devtool is neither made for production nor for readable output files.
- * It uses "eval()" calls to create a separate source file in the browser devtools.
- * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
- * or disable the default devtool with "devtool: false".
- * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
- */
- /******/ (() => { // webpackBootstrap
- /******/ var __webpack_modules__ = ({
- /***/ "./src/main.js":
- /*!*********************!*\
- !*** ./src/main.js ***!
- \*********************/
- /***/ (() => {
- eval("console.log('hello, world.');\n\nlet promise = new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve(1);\n }, 1000);\n});\n\npromise\n .then((result) => {\n console.log(result);\n })\n .catch((err) => {\n console.error(err);\n });\n\n\n//# sourceURL=webpack://webpack_project/./src/main.js?");
- /***/ })
- /******/ });
- /************************************************************************/
- /******/
- /******/ // startup
- /******/ // Load entry module and return exports
- /******/ // This entry module can't be inlined because the eval devtool is used.
- /******/ var __webpack_exports__ = {};
- /******/ __webpack_modules__["./src/main.js"]();
- /******/
- /******/ })()
- ;
|