| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | This example shows how to use Code Splitting with entrypoint dependOn | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # webpack.config.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							|  |  |  | module.exports = { | 
					
						
							|  |  |  | 	entry: { | 
					
						
							|  |  |  | 		app: { import: "./app.js", dependOn: ["other-vendors"] }, | 
					
						
							|  |  |  | 		page1: { import: "./page1.js", dependOn: ["app", "react-vendors"] }, | 
					
						
							|  |  |  | 		"react-vendors": ["react", "react-dom", "prop-types"], | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | 		"other-vendors": "./other-vendors" | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	optimization: { | 
					
						
							|  |  |  | 		runtimeChunk: "single", | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | 		chunkIds: "named" // To keep filename consistent between different modes (for example building only) | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	stats: { | 
					
						
							|  |  |  | 		chunks: true, | 
					
						
							|  |  |  | 		chunkRelations: true | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # app.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							|  |  |  | import isomorphicFetch from "isomorphic-fetch"; | 
					
						
							|  |  |  | import lodash from "lodash"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | console.log(isomorphicFetch, lodash); | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # page1.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							|  |  |  | import isomorphicFetch from "isomorphic-fetch"; | 
					
						
							|  |  |  | import react from "react"; | 
					
						
							|  |  |  | import reactDOM from "react-dom"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | console.log(isomorphicFetch, react, reactDOM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import("./lazy"); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | # lazy.js
 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | import lodash from "lodash"; | 
					
						
							|  |  |  | import propTypes from "prop-types"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | console.log(lodash, propTypes); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | # other-vendors.js
 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | import lodash from "lodash"; | 
					
						
							|  |  |  | import isomorphicFetch from "isomorphic-fetch"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Additional initializations | 
					
						
							|  |  |  | console.log(lodash, isomorphicFetch); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # dist/runtime.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							|  |  |  | /******/ (() => { // webpackBootstrap | 
					
						
							|  |  |  | /******/ 	"use strict"; | 
					
						
							|  |  |  | /******/ 	var __webpack_modules__ = ({}); | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <details><summary><code>/* webpack runtime code */</code></summary> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` js | 
					
						
							|  |  |  | /************************************************************************/ | 
					
						
							|  |  |  | /******/ 	// The module cache | 
					
						
							|  |  |  | /******/ 	var __webpack_module_cache__ = {}; | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	// The require function | 
					
						
							|  |  |  | /******/ 	function __webpack_require__(moduleId) { | 
					
						
							|  |  |  | /******/ 		// Check if module is in cache | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 		var cachedModule = __webpack_module_cache__[moduleId]; | 
					
						
							|  |  |  | /******/ 		if (cachedModule !== undefined) { | 
					
						
							|  |  |  | /******/ 			return cachedModule.exports; | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		} | 
					
						
							|  |  |  | /******/ 		// Create a new module (and put it into the cache) | 
					
						
							|  |  |  | /******/ 		var module = __webpack_module_cache__[moduleId] = { | 
					
						
							|  |  |  | /******/ 			// no module.id needed | 
					
						
							|  |  |  | /******/ 			// no module.loaded needed | 
					
						
							|  |  |  | /******/ 			exports: {} | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 		// Execute the module function | 
					
						
							|  |  |  | /******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 		// Return the exports of the module | 
					
						
							|  |  |  | /******/ 		return module.exports; | 
					
						
							|  |  |  | /******/ 	} | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	// expose the modules object (__webpack_modules__) | 
					
						
							|  |  |  | /******/ 	__webpack_require__.m = __webpack_modules__; | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 	/* webpack/runtime/chunk loaded */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		var deferred = []; | 
					
						
							|  |  |  | /******/ 		__webpack_require__.O = (result, chunkIds, fn, priority) => { | 
					
						
							|  |  |  | /******/ 			if(chunkIds) { | 
					
						
							|  |  |  | /******/ 				priority = priority || 0; | 
					
						
							|  |  |  | /******/ 				for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1]; | 
					
						
							|  |  |  | /******/ 				deferred[i] = [chunkIds, fn, priority]; | 
					
						
							|  |  |  | /******/ 				return; | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			var notFulfilled = Infinity; | 
					
						
							|  |  |  | /******/ 			for (var i = 0; i < deferred.length; i++) { | 
					
						
							|  |  |  | /******/ 				var [chunkIds, fn, priority] = deferred[i]; | 
					
						
							|  |  |  | /******/ 				var fulfilled = true; | 
					
						
							|  |  |  | /******/ 				for (var j = 0; j < chunkIds.length; j++) { | 
					
						
							|  |  |  | /******/ 					if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) { | 
					
						
							|  |  |  | /******/ 						chunkIds.splice(j--, 1); | 
					
						
							|  |  |  | /******/ 					} else { | 
					
						
							|  |  |  | /******/ 						fulfilled = false; | 
					
						
							|  |  |  | /******/ 						if(priority < notFulfilled) notFulfilled = priority; | 
					
						
							|  |  |  | /******/ 					} | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 				if(fulfilled) { | 
					
						
							|  |  |  | /******/ 					deferred.splice(i--, 1) | 
					
						
							|  |  |  | /******/ 					var r = fn(); | 
					
						
							|  |  |  | /******/ 					if (r !== undefined) result = r; | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			return result; | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 	/* webpack/runtime/compat get default export */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		// getDefaultExport function for compatibility with non-harmony modules | 
					
						
							|  |  |  | /******/ 		__webpack_require__.n = (module) => { | 
					
						
							|  |  |  | /******/ 			var getter = module && module.__esModule ? | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 				() => (module['default']) : | 
					
						
							|  |  |  | /******/ 				() => (module); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 			__webpack_require__.d(getter, { a: getter }); | 
					
						
							|  |  |  | /******/ 			return getter; | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	/* webpack/runtime/define property getters */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		// define getter functions for harmony exports | 
					
						
							|  |  |  | /******/ 		__webpack_require__.d = (exports, definition) => { | 
					
						
							|  |  |  | /******/ 			for(var key in definition) { | 
					
						
							|  |  |  | /******/ 				if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { | 
					
						
							|  |  |  | /******/ 					Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 	/* webpack/runtime/ensure chunk */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		__webpack_require__.f = {}; | 
					
						
							|  |  |  | /******/ 		// This file contains only the entry chunk. | 
					
						
							|  |  |  | /******/ 		// The chunk loading function for additional chunks | 
					
						
							|  |  |  | /******/ 		__webpack_require__.e = (chunkId) => { | 
					
						
							|  |  |  | /******/ 			return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => { | 
					
						
							|  |  |  | /******/ 				__webpack_require__.f[key](chunkId, promises); | 
					
						
							|  |  |  | /******/ 				return promises; | 
					
						
							|  |  |  | /******/ 			}, [])); | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	/* webpack/runtime/get javascript chunk filename */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		// This function allow to reference async chunks | 
					
						
							|  |  |  | /******/ 		__webpack_require__.u = (chunkId) => { | 
					
						
							|  |  |  | /******/ 			// return url for filenames based on template | 
					
						
							|  |  |  | /******/ 			return "" + chunkId + ".js"; | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 	/* webpack/runtime/hasOwnProperty shorthand */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 		__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 	/* webpack/runtime/load script */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		var inProgress = {}; | 
					
						
							|  |  |  | /******/ 		// data-webpack is not used as build has no uniqueName | 
					
						
							|  |  |  | /******/ 		// loadScript function to load a script via script tag | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 		__webpack_require__.l = (url, done, key, chunkId) => { | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 			if(inProgress[url]) { inProgress[url].push(done); return; } | 
					
						
							|  |  |  | /******/ 			var script, needAttach; | 
					
						
							|  |  |  | /******/ 			if(key !== undefined) { | 
					
						
							|  |  |  | /******/ 				var scripts = document.getElementsByTagName("script"); | 
					
						
							|  |  |  | /******/ 				for(var i = 0; i < scripts.length; i++) { | 
					
						
							|  |  |  | /******/ 					var s = scripts[i]; | 
					
						
							|  |  |  | /******/ 					if(s.getAttribute("src") == url) { script = s; break; } | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			if(!script) { | 
					
						
							|  |  |  | /******/ 				needAttach = true; | 
					
						
							|  |  |  | /******/ 				script = document.createElement('script'); | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 				script.charset = 'utf-8'; | 
					
						
							|  |  |  | /******/ 				script.timeout = 120; | 
					
						
							|  |  |  | /******/ 				if (__webpack_require__.nc) { | 
					
						
							|  |  |  | /******/ 					script.setAttribute("nonce", __webpack_require__.nc); | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2025-04-25 01:57:25 +08:00
										 |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 				script.src = url; | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			inProgress[url] = [done]; | 
					
						
							|  |  |  | /******/ 			var onScriptComplete = (prev, event) => { | 
					
						
							|  |  |  | /******/ 				// avoid mem leaks in IE. | 
					
						
							|  |  |  | /******/ 				script.onerror = script.onload = null; | 
					
						
							|  |  |  | /******/ 				clearTimeout(timeout); | 
					
						
							|  |  |  | /******/ 				var doneFns = inProgress[url]; | 
					
						
							|  |  |  | /******/ 				delete inProgress[url]; | 
					
						
							|  |  |  | /******/ 				script.parentNode && script.parentNode.removeChild(script); | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 				doneFns && doneFns.forEach((fn) => (fn(event))); | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 				if(prev) return prev(event); | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); | 
					
						
							|  |  |  | /******/ 			script.onerror = onScriptComplete.bind(null, script.onerror); | 
					
						
							|  |  |  | /******/ 			script.onload = onScriptComplete.bind(null, script.onload); | 
					
						
							|  |  |  | /******/ 			needAttach && document.head.appendChild(script); | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 	/* webpack/runtime/make namespace object */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		// define __esModule on exports | 
					
						
							|  |  |  | /******/ 		__webpack_require__.r = (exports) => { | 
					
						
							|  |  |  | /******/ 			if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { | 
					
						
							|  |  |  | /******/ 				Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			Object.defineProperty(exports, '__esModule', { value: true }); | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	/* webpack/runtime/publicPath */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							|  |  |  | /******/ 		__webpack_require__.p = "dist/"; | 
					
						
							|  |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 	/* webpack/runtime/jsonp chunk loading */ | 
					
						
							|  |  |  | /******/ 	(() => { | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 		// no baseURI | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		// object to store loaded and loading chunks | 
					
						
							|  |  |  | /******/ 		// undefined = chunk not loaded, null = chunk preloaded/prefetched | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 		// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		var installedChunks = { | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 			"runtime": 0 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		}; | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 		__webpack_require__.f.j = (chunkId, promises) => { | 
					
						
							|  |  |  | /******/ 				// JSONP chunk loading for javascript | 
					
						
							|  |  |  | /******/ 				var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined; | 
					
						
							|  |  |  | /******/ 				if(installedChunkData !== 0) { // 0 means "already installed". | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 					// a Promise means "currently loading". | 
					
						
							|  |  |  | /******/ 					if(installedChunkData) { | 
					
						
							|  |  |  | /******/ 						promises.push(installedChunkData[2]); | 
					
						
							|  |  |  | /******/ 					} else { | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 						if("runtime" != chunkId) { | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 							// setup Promise in chunk cache | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 							var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject])); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 							promises.push(installedChunkData[2] = promise); | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 							// start chunk loading | 
					
						
							|  |  |  | /******/ 							var url = __webpack_require__.p + __webpack_require__.u(chunkId); | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 							// create error before stack unwound to get useful stacktrace later | 
					
						
							|  |  |  | /******/ 							var error = new Error(); | 
					
						
							|  |  |  | /******/ 							var loadingEnded = (event) => { | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 								if(__webpack_require__.o(installedChunks, chunkId)) { | 
					
						
							|  |  |  | /******/ 									installedChunkData = installedChunks[chunkId]; | 
					
						
							|  |  |  | /******/ 									if(installedChunkData !== 0) installedChunks[chunkId] = undefined; | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 									if(installedChunkData) { | 
					
						
							|  |  |  | /******/ 										var errorType = event && (event.type === 'load' ? 'missing' : event.type); | 
					
						
							|  |  |  | /******/ 										var realSrc = event && event.target && event.target.src; | 
					
						
							|  |  |  | /******/ 										error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')'; | 
					
						
							|  |  |  | /******/ 										error.name = 'ChunkLoadError'; | 
					
						
							|  |  |  | /******/ 										error.type = errorType; | 
					
						
							|  |  |  | /******/ 										error.request = realSrc; | 
					
						
							|  |  |  | /******/ 										installedChunkData[1](error); | 
					
						
							|  |  |  | /******/ 									} | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 								} | 
					
						
							|  |  |  | /******/ 							}; | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 							__webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /******/ 						} else installedChunks[chunkId] = 0; | 
					
						
							|  |  |  | /******/ 					} | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 		}; | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 		// no prefetching | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 		// no preloaded | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 		// no HMR | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 		// no HMR manifest | 
					
						
							|  |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 		__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		 | 
					
						
							|  |  |  | /******/ 		// install a JSONP callback for chunk loading | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | /******/ 		var webpackJsonpCallback = (parentChunkLoadingFunction, data) => { | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 			var [chunkIds, moreModules, runtime] = data; | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 			// add "moreModules" to the modules object, | 
					
						
							|  |  |  | /******/ 			// then flag all "chunkIds" as loaded and fire callback | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 			var moduleId, chunkId, i = 0; | 
					
						
							|  |  |  | /******/ 			if(chunkIds.some((id) => (installedChunks[id] !== 0))) { | 
					
						
							|  |  |  | /******/ 				for(moduleId in moreModules) { | 
					
						
							|  |  |  | /******/ 					if(__webpack_require__.o(moreModules, moduleId)) { | 
					
						
							|  |  |  | /******/ 						__webpack_require__.m[moduleId] = moreModules[moduleId]; | 
					
						
							|  |  |  | /******/ 					} | 
					
						
							|  |  |  | /******/ 				} | 
					
						
							|  |  |  | /******/ 				if(runtime) var result = runtime(__webpack_require__); | 
					
						
							|  |  |  | /******/ 			} | 
					
						
							|  |  |  | /******/ 			if(parentChunkLoadingFunction) parentChunkLoadingFunction(data); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 			for(;i < chunkIds.length; i++) { | 
					
						
							|  |  |  | /******/ 				chunkId = chunkIds[i]; | 
					
						
							|  |  |  | /******/ 				if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) { | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 					installedChunks[chunkId][0](); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 				} | 
					
						
							| 
									
										
										
										
											2023-04-08 06:23:22 +08:00
										 |  |  | /******/ 				installedChunks[chunkId] = 0; | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 			} | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 			return __webpack_require__.O(result); | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 		} | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 		 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /******/ 		var chunkLoadingGlobal = self["webpackChunk"] = self["webpackChunk"] || []; | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | /******/ 		chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0)); | 
					
						
							|  |  |  | /******/ 		chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal)); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ 	})(); | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							|  |  |  | /************************************************************************/ | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </details> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` js | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ 	 | 
					
						
							|  |  |  | /******/ 	 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /******/ })() | 
					
						
							|  |  |  | ; | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # dist/app.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([["app"],{ | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /***/ 6: | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!****************!*\ | 
					
						
							|  |  |  |   !*** ./app.js ***! | 
					
						
							|  |  |  |   \****************/ | 
					
						
							|  |  |  | /*! namespace exports */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! exports [not provided] [no usage info] */ | 
					
						
							|  |  |  | /*! runtime requirements: __webpack_require__, __webpack_require__.n, __webpack_require__.r, __webpack_exports__, __webpack_require__.* */ | 
					
						
							|  |  |  | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | __webpack_require__.r(__webpack_exports__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! isomorphic-fetch */ 5); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash */ 4); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(lodash__WEBPACK_IMPORTED_MODULE_1__); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | console.log((isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0___default()), (lodash__WEBPACK_IMPORTED_MODULE_1___default())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | }, | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ __webpack_require__ => { // webpackRuntimeModules | 
					
						
							|  |  |  | /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) | 
					
						
							|  |  |  | /******/ __webpack_require__.O(0, ["other-vendors"], () => (__webpack_exec__(6))); | 
					
						
							|  |  |  | /******/ var __webpack_exports__ = __webpack_require__.O(); | 
					
						
							|  |  |  | /******/ } | 
					
						
							|  |  |  | ]); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # dist/page1.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([["page1"],{ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /***/ 7: | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!******************!*\ | 
					
						
							|  |  |  |   !*** ./page1.js ***! | 
					
						
							|  |  |  |   \******************/ | 
					
						
							|  |  |  | /*! namespace exports */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! exports [not provided] [no usage info] */ | 
					
						
							|  |  |  | /*! runtime requirements: __webpack_require__, __webpack_require__.n, __webpack_require__.r, __webpack_exports__, __webpack_require__.e, __webpack_require__.* */ | 
					
						
							|  |  |  | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | __webpack_require__.r(__webpack_exports__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! isomorphic-fetch */ 5); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ 0); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-dom */ 1); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react_dom__WEBPACK_IMPORTED_MODULE_2__); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | console.log((isomorphic_fetch__WEBPACK_IMPORTED_MODULE_0___default()), (react__WEBPACK_IMPORTED_MODULE_1___default()), (react_dom__WEBPACK_IMPORTED_MODULE_2___default())); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | __webpack_require__.e(/*! import() */ "lazy_js").then(__webpack_require__.bind(__webpack_require__, /*! ./lazy */ 8)); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | }, | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ __webpack_require__ => { // webpackRuntimeModules | 
					
						
							|  |  |  | /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) | 
					
						
							|  |  |  | /******/ __webpack_require__.O(0, ["app","react-vendors","other-vendors"], () => (__webpack_exec__(7))); | 
					
						
							|  |  |  | /******/ var __webpack_exports__ = __webpack_require__.O(); | 
					
						
							|  |  |  | /******/ } | 
					
						
							|  |  |  | ]); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # dist/other-vendors.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([["other-vendors"],[ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /* 0 */, | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 1 */, | 
					
						
							|  |  |  | /* 2 */, | 
					
						
							|  |  |  | /* 3 */ | 
					
						
							|  |  |  | /*!**************************!*\ | 
					
						
							|  |  |  |   !*** ./other-vendors.js ***! | 
					
						
							|  |  |  |   \**************************/ | 
					
						
							|  |  |  | /*! namespace exports */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! exports [not provided] [no usage info] */ | 
					
						
							|  |  |  | /*! runtime requirements: __webpack_require__, __webpack_require__.n, __webpack_require__.r, __webpack_exports__, __webpack_require__.* */ | 
					
						
							|  |  |  | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | __webpack_require__.r(__webpack_exports__); | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash */ 4); | 
					
						
							|  |  |  | /* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash__WEBPACK_IMPORTED_MODULE_0__); | 
					
						
							|  |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! isomorphic-fetch */ 5); | 
					
						
							|  |  |  | /* harmony import */ var isomorphic_fetch__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(isomorphic_fetch__WEBPACK_IMPORTED_MODULE_1__); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Additional initializations | 
					
						
							|  |  |  | console.log((lodash__WEBPACK_IMPORTED_MODULE_0___default()), (isomorphic_fetch__WEBPACK_IMPORTED_MODULE_1___default())); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }), | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 4 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!********************************!*\ | 
					
						
							|  |  |  |   !*** ./node_modules/lodash.js ***! | 
					
						
							|  |  |  |   \********************************/ | 
					
						
							|  |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							|  |  |  | /*! runtime requirements: module */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! CommonJS bailout: module.exports is used directly at 1:0-14 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /***/ ((module) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = 'lodash'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | /***/ }), | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 5 */ | 
					
						
							|  |  |  | /*!******************************************!*\ | 
					
						
							|  |  |  |   !*** ./node_modules/isomorphic-fetch.js ***! | 
					
						
							|  |  |  |   \******************************************/ | 
					
						
							|  |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							|  |  |  | /*! runtime requirements: module */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! CommonJS bailout: module.exports is used directly at 1:0-14 */ | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /***/ ((module) => { | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | module.exports = "isomorphic-fetch"; | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ __webpack_require__ => { // webpackRuntimeModules | 
					
						
							|  |  |  | /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) | 
					
						
							|  |  |  | /******/ var __webpack_exports__ = (__webpack_exec__(3)); | 
					
						
							|  |  |  | /******/ } | 
					
						
							|  |  |  | ]); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # dist/react-vendors.js
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([["react-vendors"],[ | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!*******************************!*\ | 
					
						
							|  |  |  |   !*** ./node_modules/react.js ***! | 
					
						
							|  |  |  |   \*******************************/ | 
					
						
							|  |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							|  |  |  | /*! runtime requirements: module */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! CommonJS bailout: module.exports is used directly at 1:0-14 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /***/ ((module) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = 'react'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }), | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 1 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!***********************************!*\ | 
					
						
							|  |  |  |   !*** ./node_modules/react-dom.js ***! | 
					
						
							|  |  |  |   \***********************************/ | 
					
						
							|  |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							|  |  |  | /*! runtime requirements: module */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! CommonJS bailout: module.exports is used directly at 1:0-14 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /***/ ((module) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = 'react-dom'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }), | 
					
						
							| 
									
										
										
										
											2020-02-07 17:05:51 +08:00
										 |  |  | /* 2 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /*!************************************!*\ | 
					
						
							|  |  |  |   !*** ./node_modules/prop-types.js ***! | 
					
						
							|  |  |  |   \************************************/ | 
					
						
							|  |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							|  |  |  | /*! runtime requirements: module */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*! CommonJS bailout: module.exports is used directly at 1:0-14 */ | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | /***/ ((module) => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 17:00:45 +08:00
										 |  |  | module.exports = 'prop-types'; | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | /******/ __webpack_require__ => { // webpackRuntimeModules | 
					
						
							|  |  |  | /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) | 
					
						
							|  |  |  | /******/ var __webpack_exports__ = (__webpack_exec__(0), __webpack_exec__(1), __webpack_exec__(2)); | 
					
						
							|  |  |  | /******/ } | 
					
						
							|  |  |  | ]); | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Info
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Unoptimized
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | asset runtime.js 11.1 KiB [emitted] (name: runtime) | 
					
						
							|  |  |  | asset other-vendors.js 2.13 KiB [emitted] (name: other-vendors) | 
					
						
							|  |  |  | asset page1.js 1.91 KiB [emitted] (name: page1) | 
					
						
							|  |  |  | asset app.js 1.44 KiB [emitted] (name: app) | 
					
						
							|  |  |  | asset react-vendors.js 1.33 KiB [emitted] (name: react-vendors) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | asset lazy_js.js 1.11 KiB [emitted] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | Entrypoint app 1.44 KiB = app.js | 
					
						
							|  |  |  | Entrypoint page1 1.91 KiB = page1.js | 
					
						
							| 
									
										
										
										
											2025-04-25 01:57:25 +08:00
										 |  |  | Entrypoint react-vendors 12.5 KiB = runtime.js 11.1 KiB react-vendors.js 1.33 KiB | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | Entrypoint other-vendors 13.3 KiB = runtime.js 11.1 KiB other-vendors.js 2.13 KiB | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | chunk (runtime: runtime) app.js (app) 116 bytes <{other-vendors}> <{runtime}> >{page1}< [initial] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./app.js app
 | 
					
						
							|  |  |  |   ./app.js 116 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry ./app.js app | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | chunk (runtime: runtime) lazy_js.js 98 bytes <{page1}> [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./lazy ./page1.js 7:0-16
 | 
					
						
							|  |  |  |   ./lazy.js 98 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     import() ./lazy ./page1.js 7:0-16 | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | chunk (runtime: runtime) other-vendors.js (other-vendors) 210 bytes ={runtime}= >{app}< [initial] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./other-vendors other-vendors
 | 
					
						
							|  |  |  |   dependent modules 64 bytes [dependent] 2 modules | 
					
						
							|  |  |  |   ./other-vendors.js 146 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry ./other-vendors other-vendors | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | chunk (runtime: runtime) page1.js (page1) 176 bytes <{app}> <{react-vendors}> <{runtime}> >{lazy_js}< [initial] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./page1.js page1
 | 
					
						
							|  |  |  |   ./page1.js 176 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry ./page1.js page1 | 
					
						
							| 
									
										
										
										
											2020-12-11 17:29:32 +08:00
										 |  |  | chunk (runtime: runtime) react-vendors.js (react-vendors) 87 bytes ={runtime}= >{page1}< [initial] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > prop-types react-vendors
 | 
					
						
							|  |  |  |   > react react-vendors
 | 
					
						
							|  |  |  |   > react-dom react-vendors
 | 
					
						
							|  |  |  |   ./node_modules/prop-types.js 31 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./lazy.js | 
					
						
							|  |  |  |       harmony side effect evaluation prop-types ./lazy.js 2:0-35 | 
					
						
							|  |  |  |       harmony import specifier prop-types ./lazy.js 4:20-29 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/prop-types.js 1:0-14 | 
					
						
							|  |  |  |     entry prop-types react-vendors | 
					
						
							|  |  |  |   ./node_modules/react-dom.js 30 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./page1.js | 
					
						
							|  |  |  |       harmony side effect evaluation react-dom ./page1.js 3:0-33 | 
					
						
							|  |  |  |       harmony import specifier react-dom ./page1.js 5:36-44 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/react-dom.js 1:0-14 | 
					
						
							|  |  |  |     entry react-dom react-vendors | 
					
						
							|  |  |  |   ./node_modules/react.js 26 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./page1.js | 
					
						
							|  |  |  |       harmony side effect evaluation react ./page1.js 2:0-26 | 
					
						
							|  |  |  |       harmony import specifier react ./page1.js 5:29-34 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/react.js 1:0-14 | 
					
						
							|  |  |  |     entry react react-vendors | 
					
						
							| 
									
										
										
										
											2023-04-08 06:23:22 +08:00
										 |  |  | chunk (runtime: runtime) runtime.js (runtime) 6.74 KiB ={other-vendors}= ={react-vendors}= >{app}< >{page1}< [entry] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./other-vendors other-vendors
 | 
					
						
							|  |  |  |   > prop-types react-vendors
 | 
					
						
							|  |  |  |   > react react-vendors
 | 
					
						
							|  |  |  |   > react-dom react-vendors
 | 
					
						
							| 
									
										
										
										
											2023-04-08 06:23:22 +08:00
										 |  |  |   runtime modules 6.74 KiB 10 modules | 
					
						
							| 
									
										
										
										
											2025-04-29 02:11:48 +08:00
										 |  |  | webpack X.X.X compiled successfully | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Production mode
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  | asset runtime.js 2.37 KiB [emitted] [minimized] (name: runtime) | 
					
						
							| 
									
										
										
										
											2025-04-25 01:57:25 +08:00
										 |  |  | asset page1.js 283 bytes [emitted] [minimized] (name: page1) | 
					
						
							|  |  |  | asset other-vendors.js 241 bytes [emitted] [minimized] (name: other-vendors) | 
					
						
							|  |  |  | asset react-vendors.js 204 bytes [emitted] [minimized] (name: react-vendors) | 
					
						
							|  |  |  | asset app.js 202 bytes [emitted] [minimized] (name: app) | 
					
						
							|  |  |  | asset lazy_js.js 160 bytes [emitted] [minimized] | 
					
						
							|  |  |  | Entrypoint app 202 bytes = app.js | 
					
						
							|  |  |  | Entrypoint page1 283 bytes = page1.js | 
					
						
							|  |  |  | Entrypoint react-vendors 2.57 KiB = runtime.js 2.37 KiB react-vendors.js 204 bytes | 
					
						
							|  |  |  | Entrypoint other-vendors 2.6 KiB = runtime.js 2.37 KiB other-vendors.js 241 bytes | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | chunk (runtime: runtime) app.js (app) 116 bytes <{other-vendors}> <{runtime}> >{page1}< [initial] [rendered] | 
					
						
							|  |  |  |   > ./app.js app
 | 
					
						
							|  |  |  |   ./app.js 116 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [no exports used] | 
					
						
							|  |  |  |     entry ./app.js app | 
					
						
							|  |  |  | chunk (runtime: runtime) lazy_js.js 98 bytes <{page1}> [rendered] | 
					
						
							|  |  |  |   > ./lazy ./page1.js 7:0-16
 | 
					
						
							|  |  |  |   ./lazy.js 98 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     import() ./lazy ./page1.js 7:0-16 | 
					
						
							|  |  |  | chunk (runtime: runtime) other-vendors.js (other-vendors) 210 bytes ={runtime}= >{app}< [initial] [rendered] | 
					
						
							|  |  |  |   > ./other-vendors other-vendors
 | 
					
						
							|  |  |  |   dependent modules 64 bytes [dependent] 2 modules | 
					
						
							|  |  |  |   ./other-vendors.js 146 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [no exports used] | 
					
						
							|  |  |  |     entry ./other-vendors other-vendors | 
					
						
							|  |  |  | chunk (runtime: runtime) page1.js (page1) 176 bytes <{app}> <{react-vendors}> <{runtime}> >{lazy_js}< [initial] [rendered] | 
					
						
							|  |  |  |   > ./page1.js page1
 | 
					
						
							|  |  |  |   ./page1.js 176 bytes [built] [code generated] | 
					
						
							|  |  |  |     [no exports] | 
					
						
							|  |  |  |     [no exports used] | 
					
						
							|  |  |  |     entry ./page1.js page1 | 
					
						
							|  |  |  | chunk (runtime: runtime) react-vendors.js (react-vendors) 87 bytes ={runtime}= >{page1}< [initial] [rendered] | 
					
						
							|  |  |  |   > prop-types react-vendors
 | 
					
						
							|  |  |  |   > react react-vendors
 | 
					
						
							|  |  |  |   > react-dom react-vendors
 | 
					
						
							|  |  |  |   ./node_modules/prop-types.js 31 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./lazy.js | 
					
						
							|  |  |  |       harmony side effect evaluation prop-types ./lazy.js 2:0-35 | 
					
						
							|  |  |  |       harmony import specifier prop-types ./lazy.js 4:20-29 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/prop-types.js 1:0-14 | 
					
						
							|  |  |  |     entry prop-types react-vendors | 
					
						
							|  |  |  |   ./node_modules/react-dom.js 30 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./page1.js | 
					
						
							|  |  |  |       harmony side effect evaluation react-dom ./page1.js 3:0-33 | 
					
						
							|  |  |  |       harmony import specifier react-dom ./page1.js 5:36-44 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/react-dom.js 1:0-14 | 
					
						
							|  |  |  |     entry react-dom react-vendors | 
					
						
							|  |  |  |   ./node_modules/react.js 26 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							| 
									
										
										
										
											2021-08-20 14:12:50 +08:00
										 |  |  |     from origin ./page1.js | 
					
						
							|  |  |  |       harmony side effect evaluation react ./page1.js 2:0-26 | 
					
						
							|  |  |  |       harmony import specifier react ./page1.js 5:29-34 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |     cjs self exports reference ./node_modules/react.js 1:0-14 | 
					
						
							|  |  |  |     entry react react-vendors | 
					
						
							| 
									
										
										
										
											2023-04-08 06:23:22 +08:00
										 |  |  | chunk (runtime: runtime) runtime.js (runtime) 6.74 KiB ={other-vendors}= ={react-vendors}= >{app}< >{page1}< [entry] [rendered] | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  |   > ./other-vendors other-vendors
 | 
					
						
							|  |  |  |   > prop-types react-vendors
 | 
					
						
							|  |  |  |   > react react-vendors
 | 
					
						
							|  |  |  |   > react-dom react-vendors
 | 
					
						
							| 
									
										
										
										
											2023-04-08 06:23:22 +08:00
										 |  |  |   runtime modules 6.74 KiB 10 modules | 
					
						
							| 
									
										
										
										
											2025-04-29 02:11:48 +08:00
										 |  |  | webpack X.X.X compiled successfully | 
					
						
							| 
									
										
										
										
											2020-01-31 23:54:42 +08:00
										 |  |  | ``` |