├── .next ├── app-build-manifest.json ├── build-manifest.json ├── cache │ └── webpack │ │ ├── client-development │ │ ├── 0.pack.gz │ │ ├── 1.pack.gz │ │ ├── 2.pack.gz │ │ ├── 3.pack.gz │ │ ├── 4.pack.gz │ │ ├── index.pack.gz │ │ └── index.pack.gz.old │ │ └── server-development │ │ ├── 0.pack.gz │ │ ├── 1.pack.gz │ │ ├── 2.pack.gz │ │ ├── index.pack.gz │ │ └── index.pack.gz.old ├── package.json ├── react-loadable-manifest.json ├── server │ ├── app-paths-manifest.json │ ├── middleware-build-manifest.js │ ├── middleware-manifest.json │ ├── middleware-react-loadable-manifest.js │ ├── next-font-manifest.js │ ├── next-font-manifest.json │ ├── pages-manifest.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── _error.js │ │ └── index.js │ ├── server-reference-manifest.js │ ├── server-reference-manifest.json │ ├── vendor-chunks │ │ ├── @swc.js │ │ └── next.js │ └── webpack-runtime.js ├── static │ ├── chunks │ │ ├── main.js │ │ ├── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ └── index.js │ │ ├── polyfills.js │ │ ├── react-refresh.js │ │ └── webpack.js │ ├── development │ │ ├── _buildManifest.js │ │ └── _ssgManifest.js │ └── webpack │ │ └── 633457081244afec._.hot-update.json ├── trace └── types │ └── package.json ├── app ├── layout │ └── index.tsx └── page │ └── index.tsx ├── next-env.d.ts ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx └── tsconfig.json /.next/app-build-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": {} 3 | } -------------------------------------------------------------------------------- /.next/build-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "polyfillFiles": [ 3 | "static/chunks/polyfills.js" 4 | ], 5 | "devFiles": [ 6 | "static/chunks/react-refresh.js" 7 | ], 8 | "ampDevFiles": [], 9 | "lowPriorityFiles": [ 10 | "static/development/_buildManifest.js", 11 | "static/development/_ssgManifest.js" 12 | ], 13 | "rootMainFiles": [], 14 | "pages": { 15 | "/": [ 16 | "static/chunks/webpack.js", 17 | "static/chunks/main.js", 18 | "static/chunks/pages/index.js" 19 | ], 20 | "/_app": [ 21 | "static/chunks/webpack.js", 22 | "static/chunks/main.js", 23 | "static/chunks/pages/_app.js" 24 | ], 25 | "/_error": [ 26 | "static/chunks/webpack.js", 27 | "static/chunks/main.js", 28 | "static/chunks/pages/_error.js" 29 | ] 30 | }, 31 | "ampFirstPages": [] 32 | } -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/0.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/0.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/1.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/1.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/2.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/2.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/3.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/3.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/4.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/4.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/index.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/index.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/client-development/index.pack.gz.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/client-development/index.pack.gz.old -------------------------------------------------------------------------------- /.next/cache/webpack/server-development/0.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/server-development/0.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/server-development/1.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/server-development/1.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/server-development/2.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/server-development/2.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/server-development/index.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/server-development/index.pack.gz -------------------------------------------------------------------------------- /.next/cache/webpack/server-development/index.pack.gz.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeharmony15/Next-JS-Project/b10d192c08081971f1b19905bd15c719d899fc76/.next/cache/webpack/server-development/index.pack.gz.old -------------------------------------------------------------------------------- /.next/package.json: -------------------------------------------------------------------------------- 1 | {"type": "commonjs"} -------------------------------------------------------------------------------- /.next/react-loadable-manifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.next/server/app-paths-manifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.next/server/middleware-build-manifest.js: -------------------------------------------------------------------------------- 1 | self.__BUILD_MANIFEST={"polyfillFiles":["static/chunks/polyfills.js"],"devFiles":["static/chunks/react-refresh.js"],"ampDevFiles":[],"lowPriorityFiles":["static/development/_buildManifest.js","static/development/_ssgManifest.js"],"rootMainFiles":[],"pages":{"/":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/index.js"],"/_app":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/_app.js"],"/_error":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/_error.js"]},"ampFirstPages":[]} -------------------------------------------------------------------------------- /.next/server/middleware-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "sortedMiddleware": [], 3 | "middleware": {}, 4 | "functions": {}, 5 | "version": 2 6 | } -------------------------------------------------------------------------------- /.next/server/middleware-react-loadable-manifest.js: -------------------------------------------------------------------------------- 1 | self.__REACT_LOADABLE_MANIFEST="{}" -------------------------------------------------------------------------------- /.next/server/next-font-manifest.js: -------------------------------------------------------------------------------- 1 | self.__NEXT_FONT_MANIFEST="{\"pages\":{},\"app\":{},\"appUsingSizeAdjust\":false,\"pagesUsingSizeAdjust\":false}" -------------------------------------------------------------------------------- /.next/server/next-font-manifest.json: -------------------------------------------------------------------------------- 1 | {"pages":{},"app":{},"appUsingSizeAdjust":false,"pagesUsingSizeAdjust":false} -------------------------------------------------------------------------------- /.next/server/pages-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/_app": "pages/_app.js", 3 | "/_error": "pages/_error.js", 4 | "/_document": "pages/_document.js", 5 | "/": "pages/index.js" 6 | } -------------------------------------------------------------------------------- /.next/server/pages/_app.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | (() => { 11 | var exports = {}; 12 | exports.id = "pages/_app"; 13 | exports.ids = ["pages/_app"]; 14 | exports.modules = { 15 | 16 | /***/ "./pages/_app.tsx": 17 | /*!************************!*\ 18 | !*** ./pages/_app.tsx ***! 19 | \************************/ 20 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 21 | 22 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ App)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n\nfunction App({ Component, pageProps }) {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(Component, {\n ...pageProps\n }, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_app.tsx\",\n lineNumber: 4,\n columnNumber: 12\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fYXBwLnRzeCIsIm1hcHBpbmdzIjoiOzs7Ozs7O0FBRWUsU0FBU0EsSUFBSSxFQUFFQyxTQUFTLEVBQUVDLFNBQVMsRUFBWTtJQUMxRCxxQkFBTyw4REFBQ0Q7UUFBVyxHQUFHQyxTQUFTOzs7Ozs7QUFDbkMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vLi9wYWdlcy9fYXBwLnRzeD8yZmJlIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgQXBwUHJvcHMgfSBmcm9tICduZXh0L2FwcCdcclxuIFxyXG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBBcHAoeyBDb21wb25lbnQsIHBhZ2VQcm9wcyB9OiBBcHBQcm9wcykge1xyXG4gICAgcmV0dXJuIDxDb21wb25lbnQgey4uLnBhZ2VQcm9wc30gLz5cclxufSJdLCJuYW1lcyI6WyJBcHAiLCJDb21wb25lbnQiLCJwYWdlUHJvcHMiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_app.tsx\n"); 23 | 24 | /***/ }), 25 | 26 | /***/ "react/jsx-dev-runtime": 27 | /*!****************************************!*\ 28 | !*** external "react/jsx-dev-runtime" ***! 29 | \****************************************/ 30 | /***/ ((module) => { 31 | 32 | module.exports = require("react/jsx-dev-runtime"); 33 | 34 | /***/ }) 35 | 36 | }; 37 | ; 38 | 39 | // load runtime 40 | var __webpack_require__ = require("../webpack-runtime.js"); 41 | __webpack_require__.C(exports); 42 | var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) 43 | var __webpack_exports__ = (__webpack_exec__("./pages/_app.tsx")); 44 | module.exports = __webpack_exports__; 45 | 46 | })(); -------------------------------------------------------------------------------- /.next/server/pages/_document.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | (() => { 11 | var exports = {}; 12 | exports.id = "pages/_document"; 13 | exports.ids = ["pages/_document"]; 14 | exports.modules = { 15 | 16 | /***/ "./pages/_document.tsx": 17 | /*!*****************************!*\ 18 | !*** ./pages/_document.tsx ***! 19 | \*****************************/ 20 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 21 | 22 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ Document)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/document */ \"./node_modules/next/document.js\");\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(next_document__WEBPACK_IMPORTED_MODULE_1__);\n\n\nfunction Document() {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Html, {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Head, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 6,\n columnNumber: 13\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"body\", {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Main, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 8,\n columnNumber: 17\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.NextScript, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 9,\n columnNumber: 17\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 7,\n columnNumber: 13\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fZG9jdW1lbnQudHN4IiwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUE0RDtBQUU3QyxTQUFTSTtJQUNwQixxQkFDSSw4REFBQ0osK0NBQUlBOzswQkFDRCw4REFBQ0MsK0NBQUlBOzs7OzswQkFDTCw4REFBQ0k7O2tDQUNHLDhEQUFDSCwrQ0FBSUE7Ozs7O2tDQUNMLDhEQUFDQyxxREFBVUE7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSTNCIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcG9ydGZvbGlvLy4vcGFnZXMvX2RvY3VtZW50LnRzeD9kMzdkIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0bWwsIEhlYWQsIE1haW4sIE5leHRTY3JpcHQgfSBmcm9tICduZXh0L2RvY3VtZW50J1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gRG9jdW1lbnQoKSB7XHJcbiAgICByZXR1cm4gKFxyXG4gICAgICAgIDxIdG1sPlxyXG4gICAgICAgICAgICA8SGVhZCAvPlxyXG4gICAgICAgICAgICA8Ym9keT5cclxuICAgICAgICAgICAgICAgIDxNYWluIC8+XHJcbiAgICAgICAgICAgICAgICA8TmV4dFNjcmlwdCAvPlxyXG4gICAgICAgICAgICA8L2JvZHk+XHJcbiAgICAgICAgPC9IdG1sPlxyXG4gICAgKVxyXG59Il0sIm5hbWVzIjpbIkh0bWwiLCJIZWFkIiwiTWFpbiIsIk5leHRTY3JpcHQiLCJEb2N1bWVudCIsImJvZHkiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_document.tsx\n"); 23 | 24 | /***/ }), 25 | 26 | /***/ "next/dist/compiled/next-server/pages.runtime.dev.js": 27 | /*!**********************************************************************!*\ 28 | !*** external "next/dist/compiled/next-server/pages.runtime.dev.js" ***! 29 | \**********************************************************************/ 30 | /***/ ((module) => { 31 | 32 | module.exports = require("next/dist/compiled/next-server/pages.runtime.dev.js"); 33 | 34 | /***/ }), 35 | 36 | /***/ "react": 37 | /*!************************!*\ 38 | !*** external "react" ***! 39 | \************************/ 40 | /***/ ((module) => { 41 | 42 | module.exports = require("react"); 43 | 44 | /***/ }), 45 | 46 | /***/ "react/jsx-dev-runtime": 47 | /*!****************************************!*\ 48 | !*** external "react/jsx-dev-runtime" ***! 49 | \****************************************/ 50 | /***/ ((module) => { 51 | 52 | module.exports = require("react/jsx-dev-runtime"); 53 | 54 | /***/ }), 55 | 56 | /***/ "path": 57 | /*!***********************!*\ 58 | !*** external "path" ***! 59 | \***********************/ 60 | /***/ ((module) => { 61 | 62 | module.exports = require("path"); 63 | 64 | /***/ }) 65 | 66 | }; 67 | ; 68 | 69 | // load runtime 70 | var __webpack_require__ = require("../webpack-runtime.js"); 71 | __webpack_require__.C(exports); 72 | var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) 73 | var __webpack_exports__ = __webpack_require__.X(0, ["vendor-chunks/next","vendor-chunks/@swc"], () => (__webpack_exec__("./pages/_document.tsx"))); 74 | module.exports = __webpack_exports__; 75 | 76 | })(); -------------------------------------------------------------------------------- /.next/server/pages/_error.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | (() => { 11 | var exports = {}; 12 | exports.id = "pages/_error"; 13 | exports.ids = ["pages/_error"]; 14 | exports.modules = { 15 | 16 | /***/ "./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=private-next-pages%2F_error&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!": 17 | /*!******************************************************************************************************************************************************************************************************************************************************************************************************!*\ 18 | !*** ./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=private-next-pages%2F_error&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D! ***! 19 | \******************************************************************************************************************************************************************************************************************************************************************************************************/ 20 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 21 | 22 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ config: () => (/* binding */ config),\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__),\n/* harmony export */ getServerSideProps: () => (/* binding */ getServerSideProps),\n/* harmony export */ getStaticPaths: () => (/* binding */ getStaticPaths),\n/* harmony export */ getStaticProps: () => (/* binding */ getStaticProps),\n/* harmony export */ reportWebVitals: () => (/* binding */ reportWebVitals),\n/* harmony export */ routeModule: () => (/* binding */ routeModule),\n/* harmony export */ unstable_getServerProps: () => (/* binding */ unstable_getServerProps),\n/* harmony export */ unstable_getServerSideProps: () => (/* binding */ unstable_getServerSideProps),\n/* harmony export */ unstable_getStaticParams: () => (/* binding */ unstable_getStaticParams),\n/* harmony export */ unstable_getStaticPaths: () => (/* binding */ unstable_getStaticPaths),\n/* harmony export */ unstable_getStaticProps: () => (/* binding */ unstable_getStaticProps)\n/* harmony export */ });\n/* harmony import */ var next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! next/dist/server/future/route-modules/pages/module.compiled */ \"./node_modules/next/dist/server/future/route-modules/pages/module.compiled.js\");\n/* harmony import */ var next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_dist_server_future_route_kind__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/dist/server/future/route-kind */ \"./node_modules/next/dist/server/future/route-kind.js\");\n/* harmony import */ var next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! next/dist/build/templates/helpers */ \"./node_modules/next/dist/build/templates/helpers.js\");\n/* harmony import */ var private_next_pages_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! private-next-pages/_document */ \"./pages/_document.tsx\");\n/* harmony import */ var private_next_pages_app__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! private-next-pages/_app */ \"./pages/_app.tsx\");\n/* harmony import */ var private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! private-next-pages/_error */ \"./node_modules/next/dist/pages/_error.js\");\n/* harmony import */ var private_next_pages_error__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__);\n// @ts-ignore this need to be imported from next/dist to be external\n\n\n\n// Import the app and document modules.\n// @ts-expect-error - replaced by webpack/turbopack loader\n\n// @ts-expect-error - replaced by webpack/turbopack loader\n\n// Import the userland code.\n// @ts-expect-error - replaced by webpack/turbopack loader\n\nconst PagesRouteModule = next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__.PagesRouteModule;\n// Re-export the component (should be the default export).\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"default\"));\n// Re-export methods.\nconst getStaticProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"getStaticProps\");\nconst getStaticPaths = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"getStaticPaths\");\nconst getServerSideProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"getServerSideProps\");\nconst config = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"config\");\nconst reportWebVitals = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"reportWebVitals\");\n// Re-export legacy methods.\nconst unstable_getStaticProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticProps\");\nconst unstable_getStaticPaths = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticPaths\");\nconst unstable_getStaticParams = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticParams\");\nconst unstable_getServerProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getServerProps\");\nconst unstable_getServerSideProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getServerSideProps\");\n// Create and export the route module that will be consumed.\nconst routeModule = new PagesRouteModule({\n definition: {\n kind: next_dist_server_future_route_kind__WEBPACK_IMPORTED_MODULE_1__.RouteKind.PAGES,\n page: \"/_error\",\n pathname: \"/_error\",\n // The following aren't used in production.\n bundlePath: \"\",\n filename: \"\"\n },\n components: {\n App: private_next_pages_app__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n Document: private_next_pages_document__WEBPACK_IMPORTED_MODULE_3__[\"default\"]\n },\n userland: private_next_pages_error__WEBPACK_IMPORTED_MODULE_5__\n});\n\n//# sourceMappingURL=pages.js.map//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LXJvdXRlLWxvYWRlci9pbmRleC5qcz9raW5kPVBBR0VTJnBhZ2U9JTJGX2Vycm9yJnByZWZlcnJlZFJlZ2lvbj0mYWJzb2x1dGVQYWdlUGF0aD1wcml2YXRlLW5leHQtcGFnZXMlMkZfZXJyb3ImYWJzb2x1dGVBcHBQYXRoPXByaXZhdGUtbmV4dC1wYWdlcyUyRl9hcHAmYWJzb2x1dGVEb2N1bWVudFBhdGg9cHJpdmF0ZS1uZXh0LXBhZ2VzJTJGX2RvY3VtZW50Jm1pZGRsZXdhcmVDb25maWdCYXNlNjQ9ZTMwJTNEISIsIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBO0FBQ3NGO0FBQ3ZCO0FBQ0w7QUFDMUQ7QUFDQTtBQUNvRDtBQUNwRDtBQUMwQztBQUMxQztBQUNBO0FBQ3NEO0FBQ3RELHlCQUF5Qix5R0FBdUI7QUFDaEQ7QUFDQSxpRUFBZSx3RUFBSyxDQUFDLHFEQUFRLFlBQVksRUFBQztBQUMxQztBQUNPLHVCQUF1Qix3RUFBSyxDQUFDLHFEQUFRO0FBQ3JDLHVCQUF1Qix3RUFBSyxDQUFDLHFEQUFRO0FBQ3JDLDJCQUEyQix3RUFBSyxDQUFDLHFEQUFRO0FBQ3pDLGVBQWUsd0VBQUssQ0FBQyxxREFBUTtBQUM3Qix3QkFBd0Isd0VBQUssQ0FBQyxxREFBUTtBQUM3QztBQUNPLGdDQUFnQyx3RUFBSyxDQUFDLHFEQUFRO0FBQzlDLGdDQUFnQyx3RUFBSyxDQUFDLHFEQUFRO0FBQzlDLGlDQUFpQyx3RUFBSyxDQUFDLHFEQUFRO0FBQy9DLGdDQUFnQyx3RUFBSyxDQUFDLHFEQUFRO0FBQzlDLG9DQUFvQyx3RUFBSyxDQUFDLHFEQUFRO0FBQ3pEO0FBQ087QUFDUDtBQUNBLGNBQWMseUVBQVM7QUFDdkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLEtBQUs7QUFDTDtBQUNBLFdBQVc7QUFDWCxnQkFBZ0I7QUFDaEIsS0FBSztBQUNMLFlBQVk7QUFDWixDQUFDOztBQUVEIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcG9ydGZvbGlvLz80MDBiIl0sInNvdXJjZXNDb250ZW50IjpbIi8vIEB0cy1pZ25vcmUgdGhpcyBuZWVkIHRvIGJlIGltcG9ydGVkIGZyb20gbmV4dC9kaXN0IHRvIGJlIGV4dGVybmFsXG5pbXBvcnQgKiBhcyBtb2R1bGUgZnJvbSBcIm5leHQvZGlzdC9zZXJ2ZXIvZnV0dXJlL3JvdXRlLW1vZHVsZXMvcGFnZXMvbW9kdWxlLmNvbXBpbGVkXCI7XG5pbXBvcnQgeyBSb3V0ZUtpbmQgfSBmcm9tIFwibmV4dC9kaXN0L3NlcnZlci9mdXR1cmUvcm91dGUta2luZFwiO1xuaW1wb3J0IHsgaG9pc3QgfSBmcm9tIFwibmV4dC9kaXN0L2J1aWxkL3RlbXBsYXRlcy9oZWxwZXJzXCI7XG4vLyBJbXBvcnQgdGhlIGFwcCBhbmQgZG9jdW1lbnQgbW9kdWxlcy5cbi8vIEB0cy1leHBlY3QtZXJyb3IgLSByZXBsYWNlZCBieSB3ZWJwYWNrL3R1cmJvcGFjayBsb2FkZXJcbmltcG9ydCBEb2N1bWVudCBmcm9tIFwicHJpdmF0ZS1uZXh0LXBhZ2VzL19kb2N1bWVudFwiO1xuLy8gQHRzLWV4cGVjdC1lcnJvciAtIHJlcGxhY2VkIGJ5IHdlYnBhY2svdHVyYm9wYWNrIGxvYWRlclxuaW1wb3J0IEFwcCBmcm9tIFwicHJpdmF0ZS1uZXh0LXBhZ2VzL19hcHBcIjtcbi8vIEltcG9ydCB0aGUgdXNlcmxhbmQgY29kZS5cbi8vIEB0cy1leHBlY3QtZXJyb3IgLSByZXBsYWNlZCBieSB3ZWJwYWNrL3R1cmJvcGFjayBsb2FkZXJcbmltcG9ydCAqIGFzIHVzZXJsYW5kIGZyb20gXCJwcml2YXRlLW5leHQtcGFnZXMvX2Vycm9yXCI7XG5jb25zdCBQYWdlc1JvdXRlTW9kdWxlID0gbW9kdWxlLlBhZ2VzUm91dGVNb2R1bGU7XG4vLyBSZS1leHBvcnQgdGhlIGNvbXBvbmVudCAoc2hvdWxkIGJlIHRoZSBkZWZhdWx0IGV4cG9ydCkuXG5leHBvcnQgZGVmYXVsdCBob2lzdCh1c2VybGFuZCwgXCJkZWZhdWx0XCIpO1xuLy8gUmUtZXhwb3J0IG1ldGhvZHMuXG5leHBvcnQgY29uc3QgZ2V0U3RhdGljUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJnZXRTdGF0aWNQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCBnZXRTdGF0aWNQYXRocyA9IGhvaXN0KHVzZXJsYW5kLCBcImdldFN0YXRpY1BhdGhzXCIpO1xuZXhwb3J0IGNvbnN0IGdldFNlcnZlclNpZGVQcm9wcyA9IGhvaXN0KHVzZXJsYW5kLCBcImdldFNlcnZlclNpZGVQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCBjb25maWcgPSBob2lzdCh1c2VybGFuZCwgXCJjb25maWdcIik7XG5leHBvcnQgY29uc3QgcmVwb3J0V2ViVml0YWxzID0gaG9pc3QodXNlcmxhbmQsIFwicmVwb3J0V2ViVml0YWxzXCIpO1xuLy8gUmUtZXhwb3J0IGxlZ2FjeSBtZXRob2RzLlxuZXhwb3J0IGNvbnN0IHVuc3RhYmxlX2dldFN0YXRpY1Byb3BzID0gaG9pc3QodXNlcmxhbmQsIFwidW5zdGFibGVfZ2V0U3RhdGljUHJvcHNcIik7XG5leHBvcnQgY29uc3QgdW5zdGFibGVfZ2V0U3RhdGljUGF0aHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTdGF0aWNQYXRoc1wiKTtcbmV4cG9ydCBjb25zdCB1bnN0YWJsZV9nZXRTdGF0aWNQYXJhbXMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTdGF0aWNQYXJhbXNcIik7XG5leHBvcnQgY29uc3QgdW5zdGFibGVfZ2V0U2VydmVyUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTZXJ2ZXJQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCB1bnN0YWJsZV9nZXRTZXJ2ZXJTaWRlUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTZXJ2ZXJTaWRlUHJvcHNcIik7XG4vLyBDcmVhdGUgYW5kIGV4cG9ydCB0aGUgcm91dGUgbW9kdWxlIHRoYXQgd2lsbCBiZSBjb25zdW1lZC5cbmV4cG9ydCBjb25zdCByb3V0ZU1vZHVsZSA9IG5ldyBQYWdlc1JvdXRlTW9kdWxlKHtcbiAgICBkZWZpbml0aW9uOiB7XG4gICAgICAgIGtpbmQ6IFJvdXRlS2luZC5QQUdFUyxcbiAgICAgICAgcGFnZTogXCIvX2Vycm9yXCIsXG4gICAgICAgIHBhdGhuYW1lOiBcIi9fZXJyb3JcIixcbiAgICAgICAgLy8gVGhlIGZvbGxvd2luZyBhcmVuJ3QgdXNlZCBpbiBwcm9kdWN0aW9uLlxuICAgICAgICBidW5kbGVQYXRoOiBcIlwiLFxuICAgICAgICBmaWxlbmFtZTogXCJcIlxuICAgIH0sXG4gICAgY29tcG9uZW50czoge1xuICAgICAgICBBcHAsXG4gICAgICAgIERvY3VtZW50XG4gICAgfSxcbiAgICB1c2VybGFuZFxufSk7XG5cbi8vIyBzb3VyY2VNYXBwaW5nVVJMPXBhZ2VzLmpzLm1hcCJdLCJuYW1lcyI6W10sInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=private-next-pages%2F_error&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!\n"); 23 | 24 | /***/ }), 25 | 26 | /***/ "./pages/_app.tsx": 27 | /*!************************!*\ 28 | !*** ./pages/_app.tsx ***! 29 | \************************/ 30 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 31 | 32 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ App)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n\nfunction App({ Component, pageProps }) {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(Component, {\n ...pageProps\n }, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_app.tsx\",\n lineNumber: 4,\n columnNumber: 12\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fYXBwLnRzeCIsIm1hcHBpbmdzIjoiOzs7Ozs7O0FBRWUsU0FBU0EsSUFBSSxFQUFFQyxTQUFTLEVBQUVDLFNBQVMsRUFBWTtJQUMxRCxxQkFBTyw4REFBQ0Q7UUFBVyxHQUFHQyxTQUFTOzs7Ozs7QUFDbkMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vLi9wYWdlcy9fYXBwLnRzeD8yZmJlIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgQXBwUHJvcHMgfSBmcm9tICduZXh0L2FwcCdcclxuIFxyXG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBBcHAoeyBDb21wb25lbnQsIHBhZ2VQcm9wcyB9OiBBcHBQcm9wcykge1xyXG4gICAgcmV0dXJuIDxDb21wb25lbnQgey4uLnBhZ2VQcm9wc30gLz5cclxufSJdLCJuYW1lcyI6WyJBcHAiLCJDb21wb25lbnQiLCJwYWdlUHJvcHMiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_app.tsx\n"); 33 | 34 | /***/ }), 35 | 36 | /***/ "./pages/_document.tsx": 37 | /*!*****************************!*\ 38 | !*** ./pages/_document.tsx ***! 39 | \*****************************/ 40 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 41 | 42 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ Document)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/document */ \"./node_modules/next/document.js\");\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(next_document__WEBPACK_IMPORTED_MODULE_1__);\n\n\nfunction Document() {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Html, {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Head, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 6,\n columnNumber: 13\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"body\", {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Main, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 8,\n columnNumber: 17\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.NextScript, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 9,\n columnNumber: 17\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 7,\n columnNumber: 13\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fZG9jdW1lbnQudHN4IiwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUE0RDtBQUU3QyxTQUFTSTtJQUNwQixxQkFDSSw4REFBQ0osK0NBQUlBOzswQkFDRCw4REFBQ0MsK0NBQUlBOzs7OzswQkFDTCw4REFBQ0k7O2tDQUNHLDhEQUFDSCwrQ0FBSUE7Ozs7O2tDQUNMLDhEQUFDQyxxREFBVUE7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSTNCIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcG9ydGZvbGlvLy4vcGFnZXMvX2RvY3VtZW50LnRzeD9kMzdkIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0bWwsIEhlYWQsIE1haW4sIE5leHRTY3JpcHQgfSBmcm9tICduZXh0L2RvY3VtZW50J1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gRG9jdW1lbnQoKSB7XHJcbiAgICByZXR1cm4gKFxyXG4gICAgICAgIDxIdG1sPlxyXG4gICAgICAgICAgICA8SGVhZCAvPlxyXG4gICAgICAgICAgICA8Ym9keT5cclxuICAgICAgICAgICAgICAgIDxNYWluIC8+XHJcbiAgICAgICAgICAgICAgICA8TmV4dFNjcmlwdCAvPlxyXG4gICAgICAgICAgICA8L2JvZHk+XHJcbiAgICAgICAgPC9IdG1sPlxyXG4gICAgKVxyXG59Il0sIm5hbWVzIjpbIkh0bWwiLCJIZWFkIiwiTWFpbiIsIk5leHRTY3JpcHQiLCJEb2N1bWVudCIsImJvZHkiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_document.tsx\n"); 43 | 44 | /***/ }), 45 | 46 | /***/ "next/dist/compiled/next-server/pages.runtime.dev.js": 47 | /*!**********************************************************************!*\ 48 | !*** external "next/dist/compiled/next-server/pages.runtime.dev.js" ***! 49 | \**********************************************************************/ 50 | /***/ ((module) => { 51 | 52 | module.exports = require("next/dist/compiled/next-server/pages.runtime.dev.js"); 53 | 54 | /***/ }), 55 | 56 | /***/ "react": 57 | /*!************************!*\ 58 | !*** external "react" ***! 59 | \************************/ 60 | /***/ ((module) => { 61 | 62 | module.exports = require("react"); 63 | 64 | /***/ }), 65 | 66 | /***/ "react/jsx-dev-runtime": 67 | /*!****************************************!*\ 68 | !*** external "react/jsx-dev-runtime" ***! 69 | \****************************************/ 70 | /***/ ((module) => { 71 | 72 | module.exports = require("react/jsx-dev-runtime"); 73 | 74 | /***/ }), 75 | 76 | /***/ "path": 77 | /*!***********************!*\ 78 | !*** external "path" ***! 79 | \***********************/ 80 | /***/ ((module) => { 81 | 82 | module.exports = require("path"); 83 | 84 | /***/ }) 85 | 86 | }; 87 | ; 88 | 89 | // load runtime 90 | var __webpack_require__ = require("../webpack-runtime.js"); 91 | __webpack_require__.C(exports); 92 | var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) 93 | var __webpack_exports__ = __webpack_require__.X(0, ["vendor-chunks/next","vendor-chunks/@swc"], () => (__webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=private-next-pages%2F_error&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!"))); 94 | module.exports = __webpack_exports__; 95 | 96 | })(); -------------------------------------------------------------------------------- /.next/server/pages/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | (() => { 11 | var exports = {}; 12 | exports.id = "pages/index"; 13 | exports.ids = ["pages/index"]; 14 | exports.modules = { 15 | 16 | /***/ "./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F&preferredRegion=&absolutePagePath=.%2Fpages%5Cindex.tsx&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!": 17 | /*!******************************************************************************************************************************************************************************************************************************************************************************************!*\ 18 | !*** ./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F&preferredRegion=&absolutePagePath=.%2Fpages%5Cindex.tsx&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D! ***! 19 | \******************************************************************************************************************************************************************************************************************************************************************************************/ 20 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 21 | 22 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ config: () => (/* binding */ config),\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__),\n/* harmony export */ getServerSideProps: () => (/* binding */ getServerSideProps),\n/* harmony export */ getStaticPaths: () => (/* binding */ getStaticPaths),\n/* harmony export */ getStaticProps: () => (/* binding */ getStaticProps),\n/* harmony export */ reportWebVitals: () => (/* binding */ reportWebVitals),\n/* harmony export */ routeModule: () => (/* binding */ routeModule),\n/* harmony export */ unstable_getServerProps: () => (/* binding */ unstable_getServerProps),\n/* harmony export */ unstable_getServerSideProps: () => (/* binding */ unstable_getServerSideProps),\n/* harmony export */ unstable_getStaticParams: () => (/* binding */ unstable_getStaticParams),\n/* harmony export */ unstable_getStaticPaths: () => (/* binding */ unstable_getStaticPaths),\n/* harmony export */ unstable_getStaticProps: () => (/* binding */ unstable_getStaticProps)\n/* harmony export */ });\n/* harmony import */ var next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! next/dist/server/future/route-modules/pages/module.compiled */ \"./node_modules/next/dist/server/future/route-modules/pages/module.compiled.js\");\n/* harmony import */ var next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_dist_server_future_route_kind__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/dist/server/future/route-kind */ \"./node_modules/next/dist/server/future/route-kind.js\");\n/* harmony import */ var next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! next/dist/build/templates/helpers */ \"./node_modules/next/dist/build/templates/helpers.js\");\n/* harmony import */ var private_next_pages_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! private-next-pages/_document */ \"./pages/_document.tsx\");\n/* harmony import */ var private_next_pages_app__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! private-next-pages/_app */ \"./pages/_app.tsx\");\n/* harmony import */ var _pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./pages\\index.tsx */ \"./pages/index.tsx\");\n// @ts-ignore this need to be imported from next/dist to be external\n\n\n\n// Import the app and document modules.\n// @ts-expect-error - replaced by webpack/turbopack loader\n\n// @ts-expect-error - replaced by webpack/turbopack loader\n\n// Import the userland code.\n// @ts-expect-error - replaced by webpack/turbopack loader\n\nconst PagesRouteModule = next_dist_server_future_route_modules_pages_module_compiled__WEBPACK_IMPORTED_MODULE_0__.PagesRouteModule;\n// Re-export the component (should be the default export).\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"default\"));\n// Re-export methods.\nconst getStaticProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"getStaticProps\");\nconst getStaticPaths = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"getStaticPaths\");\nconst getServerSideProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"getServerSideProps\");\nconst config = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"config\");\nconst reportWebVitals = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"reportWebVitals\");\n// Re-export legacy methods.\nconst unstable_getStaticProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticProps\");\nconst unstable_getStaticPaths = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticPaths\");\nconst unstable_getStaticParams = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getStaticParams\");\nconst unstable_getServerProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getServerProps\");\nconst unstable_getServerSideProps = (0,next_dist_build_templates_helpers__WEBPACK_IMPORTED_MODULE_2__.hoist)(_pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__, \"unstable_getServerSideProps\");\n// Create and export the route module that will be consumed.\nconst routeModule = new PagesRouteModule({\n definition: {\n kind: next_dist_server_future_route_kind__WEBPACK_IMPORTED_MODULE_1__.RouteKind.PAGES,\n page: \"/index\",\n pathname: \"/\",\n // The following aren't used in production.\n bundlePath: \"\",\n filename: \"\"\n },\n components: {\n App: private_next_pages_app__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n Document: private_next_pages_document__WEBPACK_IMPORTED_MODULE_3__[\"default\"]\n },\n userland: _pages_index_tsx__WEBPACK_IMPORTED_MODULE_5__\n});\n\n//# sourceMappingURL=pages.js.map//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LXJvdXRlLWxvYWRlci9pbmRleC5qcz9raW5kPVBBR0VTJnBhZ2U9JTJGJnByZWZlcnJlZFJlZ2lvbj0mYWJzb2x1dGVQYWdlUGF0aD0uJTJGcGFnZXMlNUNpbmRleC50c3gmYWJzb2x1dGVBcHBQYXRoPXByaXZhdGUtbmV4dC1wYWdlcyUyRl9hcHAmYWJzb2x1dGVEb2N1bWVudFBhdGg9cHJpdmF0ZS1uZXh0LXBhZ2VzJTJGX2RvY3VtZW50Jm1pZGRsZXdhcmVDb25maWdCYXNlNjQ9ZTMwJTNEISIsIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFDc0Y7QUFDdkI7QUFDTDtBQUMxRDtBQUNBO0FBQ29EO0FBQ3BEO0FBQzBDO0FBQzFDO0FBQ0E7QUFDK0M7QUFDL0MseUJBQXlCLHlHQUF1QjtBQUNoRDtBQUNBLGlFQUFlLHdFQUFLLENBQUMsNkNBQVEsWUFBWSxFQUFDO0FBQzFDO0FBQ08sdUJBQXVCLHdFQUFLLENBQUMsNkNBQVE7QUFDckMsdUJBQXVCLHdFQUFLLENBQUMsNkNBQVE7QUFDckMsMkJBQTJCLHdFQUFLLENBQUMsNkNBQVE7QUFDekMsZUFBZSx3RUFBSyxDQUFDLDZDQUFRO0FBQzdCLHdCQUF3Qix3RUFBSyxDQUFDLDZDQUFRO0FBQzdDO0FBQ08sZ0NBQWdDLHdFQUFLLENBQUMsNkNBQVE7QUFDOUMsZ0NBQWdDLHdFQUFLLENBQUMsNkNBQVE7QUFDOUMsaUNBQWlDLHdFQUFLLENBQUMsNkNBQVE7QUFDL0MsZ0NBQWdDLHdFQUFLLENBQUMsNkNBQVE7QUFDOUMsb0NBQW9DLHdFQUFLLENBQUMsNkNBQVE7QUFDekQ7QUFDTztBQUNQO0FBQ0EsY0FBYyx5RUFBUztBQUN2QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsS0FBSztBQUNMO0FBQ0EsV0FBVztBQUNYLGdCQUFnQjtBQUNoQixLQUFLO0FBQ0wsWUFBWTtBQUNaLENBQUM7O0FBRUQiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vP2JhODEiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gQHRzLWlnbm9yZSB0aGlzIG5lZWQgdG8gYmUgaW1wb3J0ZWQgZnJvbSBuZXh0L2Rpc3QgdG8gYmUgZXh0ZXJuYWxcbmltcG9ydCAqIGFzIG1vZHVsZSBmcm9tIFwibmV4dC9kaXN0L3NlcnZlci9mdXR1cmUvcm91dGUtbW9kdWxlcy9wYWdlcy9tb2R1bGUuY29tcGlsZWRcIjtcbmltcG9ydCB7IFJvdXRlS2luZCB9IGZyb20gXCJuZXh0L2Rpc3Qvc2VydmVyL2Z1dHVyZS9yb3V0ZS1raW5kXCI7XG5pbXBvcnQgeyBob2lzdCB9IGZyb20gXCJuZXh0L2Rpc3QvYnVpbGQvdGVtcGxhdGVzL2hlbHBlcnNcIjtcbi8vIEltcG9ydCB0aGUgYXBwIGFuZCBkb2N1bWVudCBtb2R1bGVzLlxuLy8gQHRzLWV4cGVjdC1lcnJvciAtIHJlcGxhY2VkIGJ5IHdlYnBhY2svdHVyYm9wYWNrIGxvYWRlclxuaW1wb3J0IERvY3VtZW50IGZyb20gXCJwcml2YXRlLW5leHQtcGFnZXMvX2RvY3VtZW50XCI7XG4vLyBAdHMtZXhwZWN0LWVycm9yIC0gcmVwbGFjZWQgYnkgd2VicGFjay90dXJib3BhY2sgbG9hZGVyXG5pbXBvcnQgQXBwIGZyb20gXCJwcml2YXRlLW5leHQtcGFnZXMvX2FwcFwiO1xuLy8gSW1wb3J0IHRoZSB1c2VybGFuZCBjb2RlLlxuLy8gQHRzLWV4cGVjdC1lcnJvciAtIHJlcGxhY2VkIGJ5IHdlYnBhY2svdHVyYm9wYWNrIGxvYWRlclxuaW1wb3J0ICogYXMgdXNlcmxhbmQgZnJvbSBcIi4vcGFnZXNcXFxcaW5kZXgudHN4XCI7XG5jb25zdCBQYWdlc1JvdXRlTW9kdWxlID0gbW9kdWxlLlBhZ2VzUm91dGVNb2R1bGU7XG4vLyBSZS1leHBvcnQgdGhlIGNvbXBvbmVudCAoc2hvdWxkIGJlIHRoZSBkZWZhdWx0IGV4cG9ydCkuXG5leHBvcnQgZGVmYXVsdCBob2lzdCh1c2VybGFuZCwgXCJkZWZhdWx0XCIpO1xuLy8gUmUtZXhwb3J0IG1ldGhvZHMuXG5leHBvcnQgY29uc3QgZ2V0U3RhdGljUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJnZXRTdGF0aWNQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCBnZXRTdGF0aWNQYXRocyA9IGhvaXN0KHVzZXJsYW5kLCBcImdldFN0YXRpY1BhdGhzXCIpO1xuZXhwb3J0IGNvbnN0IGdldFNlcnZlclNpZGVQcm9wcyA9IGhvaXN0KHVzZXJsYW5kLCBcImdldFNlcnZlclNpZGVQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCBjb25maWcgPSBob2lzdCh1c2VybGFuZCwgXCJjb25maWdcIik7XG5leHBvcnQgY29uc3QgcmVwb3J0V2ViVml0YWxzID0gaG9pc3QodXNlcmxhbmQsIFwicmVwb3J0V2ViVml0YWxzXCIpO1xuLy8gUmUtZXhwb3J0IGxlZ2FjeSBtZXRob2RzLlxuZXhwb3J0IGNvbnN0IHVuc3RhYmxlX2dldFN0YXRpY1Byb3BzID0gaG9pc3QodXNlcmxhbmQsIFwidW5zdGFibGVfZ2V0U3RhdGljUHJvcHNcIik7XG5leHBvcnQgY29uc3QgdW5zdGFibGVfZ2V0U3RhdGljUGF0aHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTdGF0aWNQYXRoc1wiKTtcbmV4cG9ydCBjb25zdCB1bnN0YWJsZV9nZXRTdGF0aWNQYXJhbXMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTdGF0aWNQYXJhbXNcIik7XG5leHBvcnQgY29uc3QgdW5zdGFibGVfZ2V0U2VydmVyUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTZXJ2ZXJQcm9wc1wiKTtcbmV4cG9ydCBjb25zdCB1bnN0YWJsZV9nZXRTZXJ2ZXJTaWRlUHJvcHMgPSBob2lzdCh1c2VybGFuZCwgXCJ1bnN0YWJsZV9nZXRTZXJ2ZXJTaWRlUHJvcHNcIik7XG4vLyBDcmVhdGUgYW5kIGV4cG9ydCB0aGUgcm91dGUgbW9kdWxlIHRoYXQgd2lsbCBiZSBjb25zdW1lZC5cbmV4cG9ydCBjb25zdCByb3V0ZU1vZHVsZSA9IG5ldyBQYWdlc1JvdXRlTW9kdWxlKHtcbiAgICBkZWZpbml0aW9uOiB7XG4gICAgICAgIGtpbmQ6IFJvdXRlS2luZC5QQUdFUyxcbiAgICAgICAgcGFnZTogXCIvaW5kZXhcIixcbiAgICAgICAgcGF0aG5hbWU6IFwiL1wiLFxuICAgICAgICAvLyBUaGUgZm9sbG93aW5nIGFyZW4ndCB1c2VkIGluIHByb2R1Y3Rpb24uXG4gICAgICAgIGJ1bmRsZVBhdGg6IFwiXCIsXG4gICAgICAgIGZpbGVuYW1lOiBcIlwiXG4gICAgfSxcbiAgICBjb21wb25lbnRzOiB7XG4gICAgICAgIEFwcCxcbiAgICAgICAgRG9jdW1lbnRcbiAgICB9LFxuICAgIHVzZXJsYW5kXG59KTtcblxuLy8jIHNvdXJjZU1hcHBpbmdVUkw9cGFnZXMuanMubWFwIl0sIm5hbWVzIjpbXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F&preferredRegion=&absolutePagePath=.%2Fpages%5Cindex.tsx&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!\n"); 23 | 24 | /***/ }), 25 | 26 | /***/ "./pages/_app.tsx": 27 | /*!************************!*\ 28 | !*** ./pages/_app.tsx ***! 29 | \************************/ 30 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 31 | 32 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ App)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n\nfunction App({ Component, pageProps }) {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(Component, {\n ...pageProps\n }, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_app.tsx\",\n lineNumber: 4,\n columnNumber: 12\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fYXBwLnRzeCIsIm1hcHBpbmdzIjoiOzs7Ozs7O0FBRWUsU0FBU0EsSUFBSSxFQUFFQyxTQUFTLEVBQUVDLFNBQVMsRUFBWTtJQUMxRCxxQkFBTyw4REFBQ0Q7UUFBVyxHQUFHQyxTQUFTOzs7Ozs7QUFDbkMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vLi9wYWdlcy9fYXBwLnRzeD8yZmJlIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgQXBwUHJvcHMgfSBmcm9tICduZXh0L2FwcCdcclxuIFxyXG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBBcHAoeyBDb21wb25lbnQsIHBhZ2VQcm9wcyB9OiBBcHBQcm9wcykge1xyXG4gICAgcmV0dXJuIDxDb21wb25lbnQgey4uLnBhZ2VQcm9wc30gLz5cclxufSJdLCJuYW1lcyI6WyJBcHAiLCJDb21wb25lbnQiLCJwYWdlUHJvcHMiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_app.tsx\n"); 33 | 34 | /***/ }), 35 | 36 | /***/ "./pages/_document.tsx": 37 | /*!*****************************!*\ 38 | !*** ./pages/_document.tsx ***! 39 | \*****************************/ 40 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 41 | 42 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ Document)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/document */ \"./node_modules/next/document.js\");\n/* harmony import */ var next_document__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(next_document__WEBPACK_IMPORTED_MODULE_1__);\n\n\nfunction Document() {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Html, {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Head, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 6,\n columnNumber: 13\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"body\", {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.Main, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 8,\n columnNumber: 17\n }, this),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(next_document__WEBPACK_IMPORTED_MODULE_1__.NextScript, {}, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 9,\n columnNumber: 17\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 7,\n columnNumber: 13\n }, this)\n ]\n }, void 0, true, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\_document.tsx\",\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9fZG9jdW1lbnQudHN4IiwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUE0RDtBQUU3QyxTQUFTSTtJQUNwQixxQkFDSSw4REFBQ0osK0NBQUlBOzswQkFDRCw4REFBQ0MsK0NBQUlBOzs7OzswQkFDTCw4REFBQ0k7O2tDQUNHLDhEQUFDSCwrQ0FBSUE7Ozs7O2tDQUNMLDhEQUFDQyxxREFBVUE7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSTNCIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcG9ydGZvbGlvLy4vcGFnZXMvX2RvY3VtZW50LnRzeD9kMzdkIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0bWwsIEhlYWQsIE1haW4sIE5leHRTY3JpcHQgfSBmcm9tICduZXh0L2RvY3VtZW50J1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gRG9jdW1lbnQoKSB7XHJcbiAgICByZXR1cm4gKFxyXG4gICAgICAgIDxIdG1sPlxyXG4gICAgICAgICAgICA8SGVhZCAvPlxyXG4gICAgICAgICAgICA8Ym9keT5cclxuICAgICAgICAgICAgICAgIDxNYWluIC8+XHJcbiAgICAgICAgICAgICAgICA8TmV4dFNjcmlwdCAvPlxyXG4gICAgICAgICAgICA8L2JvZHk+XHJcbiAgICAgICAgPC9IdG1sPlxyXG4gICAgKVxyXG59Il0sIm5hbWVzIjpbIkh0bWwiLCJIZWFkIiwiTWFpbiIsIk5leHRTY3JpcHQiLCJEb2N1bWVudCIsImJvZHkiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/_document.tsx\n"); 43 | 44 | /***/ }), 45 | 46 | /***/ "./pages/index.tsx": 47 | /*!*************************!*\ 48 | !*** ./pages/index.tsx ***! 49 | \*************************/ 50 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 51 | 52 | eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ Page)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n\nfunction Page() {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"h1\", {\n children: \"Hello, Next.js!\"\n }, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\index.tsx\",\n lineNumber: 2,\n columnNumber: 12\n }, this);\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9pbmRleC50c3giLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFlLFNBQVNBO0lBQ3BCLHFCQUFPLDhEQUFDQztrQkFBRzs7Ozs7O0FBQ2YiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vLi9wYWdlcy9pbmRleC50c3g/MDdmZiJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBQYWdlKCkge1xyXG4gICAgcmV0dXJuIDxoMT5IZWxsbywgTmV4dC5qcyE8L2gxPlxyXG59Il0sIm5hbWVzIjpbIlBhZ2UiLCJoMSJdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./pages/index.tsx\n"); 53 | 54 | /***/ }), 55 | 56 | /***/ "next/dist/compiled/next-server/pages.runtime.dev.js": 57 | /*!**********************************************************************!*\ 58 | !*** external "next/dist/compiled/next-server/pages.runtime.dev.js" ***! 59 | \**********************************************************************/ 60 | /***/ ((module) => { 61 | 62 | module.exports = require("next/dist/compiled/next-server/pages.runtime.dev.js"); 63 | 64 | /***/ }), 65 | 66 | /***/ "react": 67 | /*!************************!*\ 68 | !*** external "react" ***! 69 | \************************/ 70 | /***/ ((module) => { 71 | 72 | module.exports = require("react"); 73 | 74 | /***/ }), 75 | 76 | /***/ "react/jsx-dev-runtime": 77 | /*!****************************************!*\ 78 | !*** external "react/jsx-dev-runtime" ***! 79 | \****************************************/ 80 | /***/ ((module) => { 81 | 82 | module.exports = require("react/jsx-dev-runtime"); 83 | 84 | /***/ }), 85 | 86 | /***/ "path": 87 | /*!***********************!*\ 88 | !*** external "path" ***! 89 | \***********************/ 90 | /***/ ((module) => { 91 | 92 | module.exports = require("path"); 93 | 94 | /***/ }) 95 | 96 | }; 97 | ; 98 | 99 | // load runtime 100 | var __webpack_require__ = require("../webpack-runtime.js"); 101 | __webpack_require__.C(exports); 102 | var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) 103 | var __webpack_exports__ = __webpack_require__.X(0, ["vendor-chunks/next","vendor-chunks/@swc"], () => (__webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F&preferredRegion=&absolutePagePath=.%2Fpages%5Cindex.tsx&absoluteAppPath=private-next-pages%2F_app&absoluteDocumentPath=private-next-pages%2F_document&middlewareConfigBase64=e30%3D!"))); 104 | module.exports = __webpack_exports__; 105 | 106 | })(); -------------------------------------------------------------------------------- /.next/server/server-reference-manifest.js: -------------------------------------------------------------------------------- 1 | self.__RSC_SERVER_MANIFEST="{\n \"node\": {},\n \"edge\": {}\n}" -------------------------------------------------------------------------------- /.next/server/server-reference-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "node": {}, 3 | "edge": {} 4 | } -------------------------------------------------------------------------------- /.next/server/vendor-chunks/@swc.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | exports.id = "vendor-chunks/@swc"; 11 | exports.ids = ["vendor-chunks/@swc"]; 12 | exports.modules = { 13 | 14 | /***/ "./node_modules/@swc/helpers/cjs/_interop_require_default.cjs": 15 | /*!********************************************************************!*\ 16 | !*** ./node_modules/@swc/helpers/cjs/_interop_require_default.cjs ***! 17 | \********************************************************************/ 18 | /***/ ((__unused_webpack_module, exports) => { 19 | 20 | eval("\n\nexports._ = exports._interop_require_default = _interop_require_default;\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQHN3Yy9oZWxwZXJzL2Nqcy9faW50ZXJvcF9yZXF1aXJlX2RlZmF1bHQuY2pzIiwibWFwcGluZ3MiOiJBQUFhOztBQUViLFNBQVMsR0FBRyxnQ0FBZ0M7QUFDNUM7QUFDQSwyQ0FBMkM7QUFDM0MiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9wb3J0Zm9saW8vLi9ub2RlX21vZHVsZXMvQHN3Yy9oZWxwZXJzL2Nqcy9faW50ZXJvcF9yZXF1aXJlX2RlZmF1bHQuY2pzPzA0ZDciXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmV4cG9ydHMuXyA9IGV4cG9ydHMuX2ludGVyb3BfcmVxdWlyZV9kZWZhdWx0ID0gX2ludGVyb3BfcmVxdWlyZV9kZWZhdWx0O1xuZnVuY3Rpb24gX2ludGVyb3BfcmVxdWlyZV9kZWZhdWx0KG9iaikge1xuICAgIHJldHVybiBvYmogJiYgb2JqLl9fZXNNb2R1bGUgPyBvYmogOiB7IGRlZmF1bHQ6IG9iaiB9O1xufVxuIl0sIm5hbWVzIjpbXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/@swc/helpers/cjs/_interop_require_default.cjs\n"); 21 | 22 | /***/ }), 23 | 24 | /***/ "./node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs": 25 | /*!*********************************************************************!*\ 26 | !*** ./node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs ***! 27 | \*********************************************************************/ 28 | /***/ ((__unused_webpack_module, exports) => { 29 | 30 | eval("\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nexports._ = exports._interop_require_wildcard = _interop_require_wildcard;\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = {};\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQHN3Yy9oZWxwZXJzL2Nqcy9faW50ZXJvcF9yZXF1aXJlX3dpbGRjYXJkLmNqcyIsIm1hcHBpbmdzIjoiQUFBYTs7QUFFYjtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLEtBQUs7QUFDTDtBQUNBLFNBQVMsR0FBRyxpQ0FBaUM7QUFDN0M7QUFDQTtBQUNBLHVGQUF1Rjs7QUFFdkY7O0FBRUE7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTs7QUFFQTtBQUNBIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vcG9ydGZvbGlvLy4vbm9kZV9tb2R1bGVzL0Bzd2MvaGVscGVycy9janMvX2ludGVyb3BfcmVxdWlyZV93aWxkY2FyZC5janM/NjQwYSJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuZnVuY3Rpb24gX2dldFJlcXVpcmVXaWxkY2FyZENhY2hlKG5vZGVJbnRlcm9wKSB7XG4gICAgaWYgKHR5cGVvZiBXZWFrTWFwICE9PSBcImZ1bmN0aW9uXCIpIHJldHVybiBudWxsO1xuXG4gICAgdmFyIGNhY2hlQmFiZWxJbnRlcm9wID0gbmV3IFdlYWtNYXAoKTtcbiAgICB2YXIgY2FjaGVOb2RlSW50ZXJvcCA9IG5ldyBXZWFrTWFwKCk7XG5cbiAgICByZXR1cm4gKF9nZXRSZXF1aXJlV2lsZGNhcmRDYWNoZSA9IGZ1bmN0aW9uKG5vZGVJbnRlcm9wKSB7XG4gICAgICAgIHJldHVybiBub2RlSW50ZXJvcCA/IGNhY2hlTm9kZUludGVyb3AgOiBjYWNoZUJhYmVsSW50ZXJvcDtcbiAgICB9KShub2RlSW50ZXJvcCk7XG59XG5leHBvcnRzLl8gPSBleHBvcnRzLl9pbnRlcm9wX3JlcXVpcmVfd2lsZGNhcmQgPSBfaW50ZXJvcF9yZXF1aXJlX3dpbGRjYXJkO1xuZnVuY3Rpb24gX2ludGVyb3BfcmVxdWlyZV93aWxkY2FyZChvYmosIG5vZGVJbnRlcm9wKSB7XG4gICAgaWYgKCFub2RlSW50ZXJvcCAmJiBvYmogJiYgb2JqLl9fZXNNb2R1bGUpIHJldHVybiBvYmo7XG4gICAgaWYgKG9iaiA9PT0gbnVsbCB8fCB0eXBlb2Ygb2JqICE9PSBcIm9iamVjdFwiICYmIHR5cGVvZiBvYmogIT09IFwiZnVuY3Rpb25cIikgcmV0dXJuIHsgZGVmYXVsdDogb2JqIH07XG5cbiAgICB2YXIgY2FjaGUgPSBfZ2V0UmVxdWlyZVdpbGRjYXJkQ2FjaGUobm9kZUludGVyb3ApO1xuXG4gICAgaWYgKGNhY2hlICYmIGNhY2hlLmhhcyhvYmopKSByZXR1cm4gY2FjaGUuZ2V0KG9iaik7XG5cbiAgICB2YXIgbmV3T2JqID0ge307XG4gICAgdmFyIGhhc1Byb3BlcnR5RGVzY3JpcHRvciA9IE9iamVjdC5kZWZpbmVQcm9wZXJ0eSAmJiBPYmplY3QuZ2V0T3duUHJvcGVydHlEZXNjcmlwdG9yO1xuXG4gICAgZm9yICh2YXIga2V5IGluIG9iaikge1xuICAgICAgICBpZiAoa2V5ICE9PSBcImRlZmF1bHRcIiAmJiBPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwob2JqLCBrZXkpKSB7XG4gICAgICAgICAgICB2YXIgZGVzYyA9IGhhc1Byb3BlcnR5RGVzY3JpcHRvciA/IE9iamVjdC5nZXRPd25Qcm9wZXJ0eURlc2NyaXB0b3Iob2JqLCBrZXkpIDogbnVsbDtcbiAgICAgICAgICAgIGlmIChkZXNjICYmIChkZXNjLmdldCB8fCBkZXNjLnNldCkpIE9iamVjdC5kZWZpbmVQcm9wZXJ0eShuZXdPYmosIGtleSwgZGVzYyk7XG4gICAgICAgICAgICBlbHNlIG5ld09ialtrZXldID0gb2JqW2tleV07XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZXdPYmouZGVmYXVsdCA9IG9iajtcblxuICAgIGlmIChjYWNoZSkgY2FjaGUuc2V0KG9iaiwgbmV3T2JqKTtcblxuICAgIHJldHVybiBuZXdPYmo7XG59XG4iXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs\n"); 31 | 32 | /***/ }) 33 | 34 | }; 35 | ; -------------------------------------------------------------------------------- /.next/server/webpack-runtime.js: -------------------------------------------------------------------------------- 1 | /* 2 | * ATTENTION: An "eval-source-map" devtool has been used. 3 | * This devtool is neither made for production nor for readable output files. 4 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 5 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 6 | * or disable the default devtool with "devtool: false". 7 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 8 | */ 9 | /******/ (() => { // webpackBootstrap 10 | /******/ "use strict"; 11 | /******/ var __webpack_modules__ = ({}); 12 | /************************************************************************/ 13 | /******/ // The module cache 14 | /******/ var __webpack_module_cache__ = {}; 15 | /******/ 16 | /******/ // The require function 17 | /******/ function __webpack_require__(moduleId) { 18 | /******/ // Check if module is in cache 19 | /******/ var cachedModule = __webpack_module_cache__[moduleId]; 20 | /******/ if (cachedModule !== undefined) { 21 | /******/ return cachedModule.exports; 22 | /******/ } 23 | /******/ // Create a new module (and put it into the cache) 24 | /******/ var module = __webpack_module_cache__[moduleId] = { 25 | /******/ // no module.id needed 26 | /******/ // no module.loaded needed 27 | /******/ exports: {} 28 | /******/ }; 29 | /******/ 30 | /******/ // Execute the module function 31 | /******/ var threw = true; 32 | /******/ try { 33 | /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); 34 | /******/ threw = false; 35 | /******/ } finally { 36 | /******/ if(threw) delete __webpack_module_cache__[moduleId]; 37 | /******/ } 38 | /******/ 39 | /******/ // Return the exports of the module 40 | /******/ return module.exports; 41 | /******/ } 42 | /******/ 43 | /******/ // expose the modules object (__webpack_modules__) 44 | /******/ __webpack_require__.m = __webpack_modules__; 45 | /******/ 46 | /************************************************************************/ 47 | /******/ /* webpack/runtime/compat get default export */ 48 | /******/ (() => { 49 | /******/ // getDefaultExport function for compatibility with non-harmony modules 50 | /******/ __webpack_require__.n = (module) => { 51 | /******/ var getter = module && module.__esModule ? 52 | /******/ () => (module['default']) : 53 | /******/ () => (module); 54 | /******/ __webpack_require__.d(getter, { a: getter }); 55 | /******/ return getter; 56 | /******/ }; 57 | /******/ })(); 58 | /******/ 59 | /******/ /* webpack/runtime/define property getters */ 60 | /******/ (() => { 61 | /******/ // define getter functions for harmony exports 62 | /******/ __webpack_require__.d = (exports, definition) => { 63 | /******/ for(var key in definition) { 64 | /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { 65 | /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); 66 | /******/ } 67 | /******/ } 68 | /******/ }; 69 | /******/ })(); 70 | /******/ 71 | /******/ /* webpack/runtime/ensure chunk */ 72 | /******/ (() => { 73 | /******/ __webpack_require__.f = {}; 74 | /******/ // This file contains only the entry chunk. 75 | /******/ // The chunk loading function for additional chunks 76 | /******/ __webpack_require__.e = (chunkId) => { 77 | /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => { 78 | /******/ __webpack_require__.f[key](chunkId, promises); 79 | /******/ return promises; 80 | /******/ }, [])); 81 | /******/ }; 82 | /******/ })(); 83 | /******/ 84 | /******/ /* webpack/runtime/get javascript chunk filename */ 85 | /******/ (() => { 86 | /******/ // This function allow to reference async chunks and sibling chunks for the entrypoint 87 | /******/ __webpack_require__.u = (chunkId) => { 88 | /******/ // return url for filenames based on template 89 | /******/ return "" + chunkId + ".js"; 90 | /******/ }; 91 | /******/ })(); 92 | /******/ 93 | /******/ /* webpack/runtime/hasOwnProperty shorthand */ 94 | /******/ (() => { 95 | /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) 96 | /******/ })(); 97 | /******/ 98 | /******/ /* webpack/runtime/make namespace object */ 99 | /******/ (() => { 100 | /******/ // define __esModule on exports 101 | /******/ __webpack_require__.r = (exports) => { 102 | /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { 103 | /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); 104 | /******/ } 105 | /******/ Object.defineProperty(exports, '__esModule', { value: true }); 106 | /******/ }; 107 | /******/ })(); 108 | /******/ 109 | /******/ /* webpack/runtime/startup entrypoint */ 110 | /******/ (() => { 111 | /******/ __webpack_require__.X = (result, chunkIds, fn) => { 112 | /******/ // arguments: chunkIds, moduleId are deprecated 113 | /******/ var moduleId = chunkIds; 114 | /******/ if(!fn) chunkIds = result, fn = () => (__webpack_require__(__webpack_require__.s = moduleId)); 115 | /******/ chunkIds.map(__webpack_require__.e, __webpack_require__) 116 | /******/ var r = fn(); 117 | /******/ return r === undefined ? result : r; 118 | /******/ } 119 | /******/ })(); 120 | /******/ 121 | /******/ /* webpack/runtime/require chunk loading */ 122 | /******/ (() => { 123 | /******/ // no baseURI 124 | /******/ 125 | /******/ // object to store loaded chunks 126 | /******/ // "1" means "loaded", otherwise not loaded yet 127 | /******/ var installedChunks = { 128 | /******/ "webpack-runtime": 1 129 | /******/ }; 130 | /******/ 131 | /******/ // no on chunks loaded 132 | /******/ 133 | /******/ var installChunk = (chunk) => { 134 | /******/ var moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime; 135 | /******/ for(var moduleId in moreModules) { 136 | /******/ if(__webpack_require__.o(moreModules, moduleId)) { 137 | /******/ __webpack_require__.m[moduleId] = moreModules[moduleId]; 138 | /******/ } 139 | /******/ } 140 | /******/ if(runtime) runtime(__webpack_require__); 141 | /******/ for(var i = 0; i < chunkIds.length; i++) 142 | /******/ installedChunks[chunkIds[i]] = 1; 143 | /******/ 144 | /******/ }; 145 | /******/ 146 | /******/ // require() chunk loading for javascript 147 | /******/ __webpack_require__.f.require = (chunkId, promises) => { 148 | /******/ // "1" is the signal for "already loaded" 149 | /******/ if(!installedChunks[chunkId]) { 150 | /******/ if("webpack-runtime" != chunkId) { 151 | /******/ installChunk(require("./" + __webpack_require__.u(chunkId))); 152 | /******/ } else installedChunks[chunkId] = 1; 153 | /******/ } 154 | /******/ }; 155 | /******/ 156 | /******/ module.exports = __webpack_require__; 157 | /******/ __webpack_require__.C = installChunk; 158 | /******/ 159 | /******/ // no HMR 160 | /******/ 161 | /******/ // no HMR manifest 162 | /******/ })(); 163 | /******/ 164 | /************************************************************************/ 165 | /******/ 166 | /******/ 167 | /******/ })() 168 | ; -------------------------------------------------------------------------------- /.next/static/chunks/pages/_error.js: -------------------------------------------------------------------------------- 1 | /* 2 | * ATTENTION: An "eval-source-map" devtool has been used. 3 | * This devtool is neither made for production nor for readable output files. 4 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 5 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 6 | * or disable the default devtool with "devtool: false". 7 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 8 | */ 9 | (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["pages/_error"],{ 10 | 11 | /***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!": 12 | /*!***********************************************************************************************************************************************!*\ 13 | !*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error! ***! 14 | \***********************************************************************************************************************************************/ 15 | /***/ (function(module, __unused_webpack_exports, __webpack_require__) { 16 | 17 | eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/_error\",\n function () {\n return __webpack_require__(/*! private-next-pages/_error */ \"./node_modules/next/dist/pages/_error.js\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/_error\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD1wcml2YXRlLW5leHQtcGFnZXMlMkZfZXJyb3ImcGFnZT0lMkZfZXJyb3IhIiwibWFwcGluZ3MiOiI7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLG1CQUFPLENBQUMsMkVBQTJCO0FBQ2xEO0FBQ0E7QUFDQSxPQUFPLElBQVU7QUFDakIsTUFBTSxVQUFVO0FBQ2hCO0FBQ0EsT0FBTztBQUNQO0FBQ0EiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLz84MDdiIl0sInNvdXJjZXNDb250ZW50IjpbIlxuICAgICh3aW5kb3cuX19ORVhUX1AgPSB3aW5kb3cuX19ORVhUX1AgfHwgW10pLnB1c2goW1xuICAgICAgXCIvX2Vycm9yXCIsXG4gICAgICBmdW5jdGlvbiAoKSB7XG4gICAgICAgIHJldHVybiByZXF1aXJlKFwicHJpdmF0ZS1uZXh0LXBhZ2VzL19lcnJvclwiKTtcbiAgICAgIH1cbiAgICBdKTtcbiAgICBpZihtb2R1bGUuaG90KSB7XG4gICAgICBtb2R1bGUuaG90LmRpc3Bvc2UoZnVuY3Rpb24gKCkge1xuICAgICAgICB3aW5kb3cuX19ORVhUX1AucHVzaChbXCIvX2Vycm9yXCJdKVxuICAgICAgfSk7XG4gICAgfVxuICAiXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!\n")); 18 | 19 | /***/ }) 20 | 21 | }, 22 | /******/ function(__webpack_require__) { // webpackRuntimeModules 23 | /******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); } 24 | /******/ __webpack_require__.O(0, ["pages/_app","main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!"); }); 25 | /******/ var __webpack_exports__ = __webpack_require__.O(); 26 | /******/ _N_E = __webpack_exports__; 27 | /******/ } 28 | ]); -------------------------------------------------------------------------------- /.next/static/chunks/pages/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * ATTENTION: An "eval-source-map" devtool has been used. 3 | * This devtool is neither made for production nor for readable output files. 4 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 5 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 6 | * or disable the default devtool with "devtool: false". 7 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 8 | */ 9 | (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["pages/index"],{ 10 | 11 | /***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=D%3A%5CDev%5CGithub%5Cnext.js%5Cpages%5Cindex.tsx&page=%2F!": 12 | /*!***************************************************************************************************************************************************************!*\ 13 | !*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=D%3A%5CDev%5CGithub%5Cnext.js%5Cpages%5Cindex.tsx&page=%2F! ***! 14 | \***************************************************************************************************************************************************************/ 15 | /***/ (function(module, __unused_webpack_exports, __webpack_require__) { 16 | 17 | eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/\",\n function () {\n return __webpack_require__(/*! ./pages/index.tsx */ \"./pages/index.tsx\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD1EJTNBJTVDRGV2JTVDR2l0aHViJTVDbmV4dC5qcyU1Q3BhZ2VzJTVDaW5kZXgudHN4JnBhZ2U9JTJGISIsIm1hcHBpbmdzIjoiO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZUFBZSxtQkFBTyxDQUFDLDRDQUFtQjtBQUMxQztBQUNBO0FBQ0EsT0FBTyxJQUFVO0FBQ2pCLE1BQU0sVUFBVTtBQUNoQjtBQUNBLE9BQU87QUFDUDtBQUNBIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vX05fRS8/Mzk5MSJdLCJzb3VyY2VzQ29udGVudCI6WyJcbiAgICAod2luZG93Ll9fTkVYVF9QID0gd2luZG93Ll9fTkVYVF9QIHx8IFtdKS5wdXNoKFtcbiAgICAgIFwiL1wiLFxuICAgICAgZnVuY3Rpb24gKCkge1xuICAgICAgICByZXR1cm4gcmVxdWlyZShcIi4vcGFnZXMvaW5kZXgudHN4XCIpO1xuICAgICAgfVxuICAgIF0pO1xuICAgIGlmKG1vZHVsZS5ob3QpIHtcbiAgICAgIG1vZHVsZS5ob3QuZGlzcG9zZShmdW5jdGlvbiAoKSB7XG4gICAgICAgIHdpbmRvdy5fX05FWFRfUC5wdXNoKFtcIi9cIl0pXG4gICAgICB9KTtcbiAgICB9XG4gICJdLCJuYW1lcyI6W10sInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=D%3A%5CDev%5CGithub%5Cnext.js%5Cpages%5Cindex.tsx&page=%2F!\n")); 18 | 19 | /***/ }), 20 | 21 | /***/ "./pages/index.tsx": 22 | /*!*************************!*\ 23 | !*** ./pages/index.tsx ***! 24 | \*************************/ 25 | /***/ (function(module, __webpack_exports__, __webpack_require__) { 26 | 27 | "use strict"; 28 | eval(__webpack_require__.ts("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ Page; }\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"./node_modules/react/jsx-dev-runtime.js\");\n\nfunction Page() {\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"h1\", {\n children: \"Hello, Next.js!\"\n }, void 0, false, {\n fileName: \"D:\\\\Dev\\\\Github\\\\next.js\\\\pages\\\\index.tsx\",\n lineNumber: 2,\n columnNumber: 12\n }, this);\n}\n_c = Page;\nvar _c;\n$RefreshReg$(_c, \"Page\");\n\n\n;\n // Wrapped in an IIFE to avoid polluting the global scope\n ;\n (function () {\n var _a, _b;\n // Legacy CSS implementations will `eval` browser code in a Node.js context\n // to extract CSS. For backwards compatibility, we need to check we're in a\n // browser context before continuing.\n if (typeof self !== 'undefined' &&\n // AMP / No-JS mode does not inject these helpers:\n '$RefreshHelpers$' in self) {\n // @ts-ignore __webpack_module__ is global\n var currentExports = module.exports;\n // @ts-ignore __webpack_module__ is global\n var prevSignature = (_b = (_a = module.hot.data) === null || _a === void 0 ? void 0 : _a.prevSignature) !== null && _b !== void 0 ? _b : null;\n // This cannot happen in MainTemplate because the exports mismatch between\n // templating and execution.\n self.$RefreshHelpers$.registerExportsForReactRefresh(currentExports, module.id);\n // A module can be accepted automatically based on its exports, e.g. when\n // it is a Refresh Boundary.\n if (self.$RefreshHelpers$.isReactRefreshBoundary(currentExports)) {\n // Save the previous exports signature on update so we can compare the boundary\n // signatures. We avoid saving exports themselves since it causes memory leaks (https://github.com/vercel/next.js/pull/53797)\n module.hot.dispose(function (data) {\n data.prevSignature =\n self.$RefreshHelpers$.getRefreshBoundarySignature(currentExports);\n });\n // Unconditionally accept an update to this module, we'll check if it's\n // still a Refresh Boundary later.\n // @ts-ignore importMeta is replaced in the loader\n module.hot.accept();\n // This field is set when the previous version of this module was a\n // Refresh Boundary, letting us know we need to check for invalidation or\n // enqueue an update.\n if (prevSignature !== null) {\n // A boundary can become ineligible if its exports are incompatible\n // with the previous exports.\n //\n // For example, if you add/remove/change exports, we'll want to\n // re-execute the importing modules, and force those components to\n // re-render. Similarly, if you convert a class component to a\n // function, we want to invalidate the boundary.\n if (self.$RefreshHelpers$.shouldInvalidateReactRefreshBoundary(prevSignature, self.$RefreshHelpers$.getRefreshBoundarySignature(currentExports))) {\n module.hot.invalidate();\n }\n else {\n self.$RefreshHelpers$.scheduleUpdate();\n }\n }\n }\n else {\n // Since we just executed the code for the module, it's possible that the\n // new exports made it ineligible for being a boundary.\n // We only care about the case when we were _previously_ a boundary,\n // because we already accepted this update (accidental side effect).\n var isNoLongerABoundary = prevSignature !== null;\n if (isNoLongerABoundary) {\n module.hot.invalidate();\n }\n }\n }\n })();\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9wYWdlcy9pbmRleC50c3giLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQWUsU0FBU0E7SUFDcEIscUJBQU8sOERBQUNDO2tCQUFHOzs7Ozs7QUFDZjtLQUZ3QkQiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLy4vcGFnZXMvaW5kZXgudHN4PzA3ZmYiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gUGFnZSgpIHtcclxuICAgIHJldHVybiA8aDE+SGVsbG8sIE5leHQuanMhPC9oMT5cclxufSJdLCJuYW1lcyI6WyJQYWdlIiwiaDEiXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./pages/index.tsx\n")); 29 | 30 | /***/ }) 31 | 32 | }, 33 | /******/ function(__webpack_require__) { // webpackRuntimeModules 34 | /******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); } 35 | /******/ __webpack_require__.O(0, ["pages/_app","main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=D%3A%5CDev%5CGithub%5Cnext.js%5Cpages%5Cindex.tsx&page=%2F!"); }); 36 | /******/ var __webpack_exports__ = __webpack_require__.O(); 37 | /******/ _N_E = __webpack_exports__; 38 | /******/ } 39 | ]); -------------------------------------------------------------------------------- /.next/static/chunks/webpack.js: -------------------------------------------------------------------------------- 1 | /* 2 | * ATTENTION: An "eval-source-map" devtool has been used. 3 | * This devtool is neither made for production nor for readable output files. 4 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 5 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 6 | * or disable the default devtool with "devtool: false". 7 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 8 | */ 9 | /******/ (function() { // webpackBootstrap 10 | /******/ "use strict"; 11 | /******/ var __webpack_modules__ = ({}); 12 | /************************************************************************/ 13 | /******/ // The module cache 14 | /******/ var __webpack_module_cache__ = {}; 15 | /******/ 16 | /******/ // The require function 17 | /******/ function __webpack_require__(moduleId) { 18 | /******/ // Check if module is in cache 19 | /******/ var cachedModule = __webpack_module_cache__[moduleId]; 20 | /******/ if (cachedModule !== undefined) { 21 | /******/ if (cachedModule.error !== undefined) throw cachedModule.error; 22 | /******/ return cachedModule.exports; 23 | /******/ } 24 | /******/ // Create a new module (and put it into the cache) 25 | /******/ var module = __webpack_module_cache__[moduleId] = { 26 | /******/ id: moduleId, 27 | /******/ loaded: false, 28 | /******/ exports: {} 29 | /******/ }; 30 | /******/ 31 | /******/ // Execute the module function 32 | /******/ var threw = true; 33 | /******/ try { 34 | /******/ var execOptions = { id: moduleId, module: module, factory: __webpack_modules__[moduleId], require: __webpack_require__ }; 35 | /******/ __webpack_require__.i.forEach(function(handler) { handler(execOptions); }); 36 | /******/ module = execOptions.module; 37 | /******/ execOptions.factory.call(module.exports, module, module.exports, execOptions.require); 38 | /******/ threw = false; 39 | /******/ } finally { 40 | /******/ if(threw) delete __webpack_module_cache__[moduleId]; 41 | /******/ } 42 | /******/ 43 | /******/ // Flag the module as loaded 44 | /******/ module.loaded = true; 45 | /******/ 46 | /******/ // Return the exports of the module 47 | /******/ return module.exports; 48 | /******/ } 49 | /******/ 50 | /******/ // expose the modules object (__webpack_modules__) 51 | /******/ __webpack_require__.m = __webpack_modules__; 52 | /******/ 53 | /******/ // expose the module cache 54 | /******/ __webpack_require__.c = __webpack_module_cache__; 55 | /******/ 56 | /******/ // expose the module execution interceptor 57 | /******/ __webpack_require__.i = []; 58 | /******/ 59 | /************************************************************************/ 60 | /******/ /* webpack/runtime/chunk loaded */ 61 | /******/ !function() { 62 | /******/ var deferred = []; 63 | /******/ __webpack_require__.O = function(result, chunkIds, fn, priority) { 64 | /******/ if(chunkIds) { 65 | /******/ priority = priority || 0; 66 | /******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1]; 67 | /******/ deferred[i] = [chunkIds, fn, priority]; 68 | /******/ return; 69 | /******/ } 70 | /******/ var notFulfilled = Infinity; 71 | /******/ for (var i = 0; i < deferred.length; i++) { 72 | /******/ var chunkIds = deferred[i][0]; 73 | /******/ var fn = deferred[i][1]; 74 | /******/ var priority = deferred[i][2]; 75 | /******/ var fulfilled = true; 76 | /******/ for (var j = 0; j < chunkIds.length; j++) { 77 | /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) { 78 | /******/ chunkIds.splice(j--, 1); 79 | /******/ } else { 80 | /******/ fulfilled = false; 81 | /******/ if(priority < notFulfilled) notFulfilled = priority; 82 | /******/ } 83 | /******/ } 84 | /******/ if(fulfilled) { 85 | /******/ deferred.splice(i--, 1) 86 | /******/ var r = fn(); 87 | /******/ if (r !== undefined) result = r; 88 | /******/ } 89 | /******/ } 90 | /******/ return result; 91 | /******/ }; 92 | /******/ }(); 93 | /******/ 94 | /******/ /* webpack/runtime/define property getters */ 95 | /******/ !function() { 96 | /******/ // define getter functions for harmony exports 97 | /******/ __webpack_require__.d = function(exports, definition) { 98 | /******/ for(var key in definition) { 99 | /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { 100 | /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); 101 | /******/ } 102 | /******/ } 103 | /******/ }; 104 | /******/ }(); 105 | /******/ 106 | /******/ /* webpack/runtime/get javascript update chunk filename */ 107 | /******/ !function() { 108 | /******/ // This function allow to reference all chunks 109 | /******/ __webpack_require__.hu = function(chunkId) { 110 | /******/ // return url for filenames based on template 111 | /******/ return "static/webpack/" + chunkId + "." + __webpack_require__.h() + ".hot-update.js"; 112 | /******/ }; 113 | /******/ }(); 114 | /******/ 115 | /******/ /* webpack/runtime/get mini-css chunk filename */ 116 | /******/ !function() { 117 | /******/ // This function allow to reference all chunks 118 | /******/ __webpack_require__.miniCssF = function(chunkId) { 119 | /******/ // return url for filenames based on template 120 | /******/ return undefined; 121 | /******/ }; 122 | /******/ }(); 123 | /******/ 124 | /******/ /* webpack/runtime/get update manifest filename */ 125 | /******/ !function() { 126 | /******/ __webpack_require__.hmrF = function() { return "static/webpack/" + __webpack_require__.h() + ".webpack.hot-update.json"; }; 127 | /******/ }(); 128 | /******/ 129 | /******/ /* webpack/runtime/getFullHash */ 130 | /******/ !function() { 131 | /******/ __webpack_require__.h = function() { return "648552fb69fdf4f0"; } 132 | /******/ }(); 133 | /******/ 134 | /******/ /* webpack/runtime/global */ 135 | /******/ !function() { 136 | /******/ __webpack_require__.g = (function() { 137 | /******/ if (typeof globalThis === 'object') return globalThis; 138 | /******/ try { 139 | /******/ return this || new Function('return this')(); 140 | /******/ } catch (e) { 141 | /******/ if (typeof window === 'object') return window; 142 | /******/ } 143 | /******/ })(); 144 | /******/ }(); 145 | /******/ 146 | /******/ /* webpack/runtime/hasOwnProperty shorthand */ 147 | /******/ !function() { 148 | /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } 149 | /******/ }(); 150 | /******/ 151 | /******/ /* webpack/runtime/load script */ 152 | /******/ !function() { 153 | /******/ var inProgress = {}; 154 | /******/ var dataWebpackPrefix = "_N_E:"; 155 | /******/ // loadScript function to load a script via script tag 156 | /******/ __webpack_require__.l = function(url, done, key, chunkId) { 157 | /******/ if(inProgress[url]) { inProgress[url].push(done); return; } 158 | /******/ var script, needAttach; 159 | /******/ if(key !== undefined) { 160 | /******/ var scripts = document.getElementsByTagName("script"); 161 | /******/ for(var i = 0; i < scripts.length; i++) { 162 | /******/ var s = scripts[i]; 163 | /******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; } 164 | /******/ } 165 | /******/ } 166 | /******/ if(!script) { 167 | /******/ needAttach = true; 168 | /******/ script = document.createElement('script'); 169 | /******/ 170 | /******/ script.charset = 'utf-8'; 171 | /******/ script.timeout = 120; 172 | /******/ if (__webpack_require__.nc) { 173 | /******/ script.setAttribute("nonce", __webpack_require__.nc); 174 | /******/ } 175 | /******/ script.setAttribute("data-webpack", dataWebpackPrefix + key); 176 | /******/ script.src = __webpack_require__.tu(url); 177 | /******/ } 178 | /******/ inProgress[url] = [done]; 179 | /******/ var onScriptComplete = function(prev, event) { 180 | /******/ // avoid mem leaks in IE. 181 | /******/ script.onerror = script.onload = null; 182 | /******/ clearTimeout(timeout); 183 | /******/ var doneFns = inProgress[url]; 184 | /******/ delete inProgress[url]; 185 | /******/ script.parentNode && script.parentNode.removeChild(script); 186 | /******/ doneFns && doneFns.forEach(function(fn) { return fn(event); }); 187 | /******/ if(prev) return prev(event); 188 | /******/ } 189 | /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); 190 | /******/ script.onerror = onScriptComplete.bind(null, script.onerror); 191 | /******/ script.onload = onScriptComplete.bind(null, script.onload); 192 | /******/ needAttach && document.head.appendChild(script); 193 | /******/ }; 194 | /******/ }(); 195 | /******/ 196 | /******/ /* webpack/runtime/make namespace object */ 197 | /******/ !function() { 198 | /******/ // define __esModule on exports 199 | /******/ __webpack_require__.r = function(exports) { 200 | /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { 201 | /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); 202 | /******/ } 203 | /******/ Object.defineProperty(exports, '__esModule', { value: true }); 204 | /******/ }; 205 | /******/ }(); 206 | /******/ 207 | /******/ /* webpack/runtime/node module decorator */ 208 | /******/ !function() { 209 | /******/ __webpack_require__.nmd = function(module) { 210 | /******/ module.paths = []; 211 | /******/ if (!module.children) module.children = []; 212 | /******/ return module; 213 | /******/ }; 214 | /******/ }(); 215 | /******/ 216 | /******/ /* webpack/runtime/trusted types policy */ 217 | /******/ !function() { 218 | /******/ var policy; 219 | /******/ __webpack_require__.tt = function() { 220 | /******/ // Create Trusted Type policy if Trusted Types are available and the policy doesn't exist yet. 221 | /******/ if (policy === undefined) { 222 | /******/ policy = { 223 | /******/ createScript: function(script) { return script; }, 224 | /******/ createScriptURL: function(url) { return url; } 225 | /******/ }; 226 | /******/ if (typeof trustedTypes !== "undefined" && trustedTypes.createPolicy) { 227 | /******/ policy = trustedTypes.createPolicy("nextjs#bundler", policy); 228 | /******/ } 229 | /******/ } 230 | /******/ return policy; 231 | /******/ }; 232 | /******/ }(); 233 | /******/ 234 | /******/ /* webpack/runtime/trusted types script */ 235 | /******/ !function() { 236 | /******/ __webpack_require__.ts = function(script) { return __webpack_require__.tt().createScript(script); }; 237 | /******/ }(); 238 | /******/ 239 | /******/ /* webpack/runtime/trusted types script url */ 240 | /******/ !function() { 241 | /******/ __webpack_require__.tu = function(url) { return __webpack_require__.tt().createScriptURL(url); }; 242 | /******/ }(); 243 | /******/ 244 | /******/ /* webpack/runtime/hot module replacement */ 245 | /******/ !function() { 246 | /******/ var currentModuleData = {}; 247 | /******/ var installedModules = __webpack_require__.c; 248 | /******/ 249 | /******/ // module and require creation 250 | /******/ var currentChildModule; 251 | /******/ var currentParents = []; 252 | /******/ 253 | /******/ // status 254 | /******/ var registeredStatusHandlers = []; 255 | /******/ var currentStatus = "idle"; 256 | /******/ 257 | /******/ // while downloading 258 | /******/ var blockingPromises = 0; 259 | /******/ var blockingPromisesWaiting = []; 260 | /******/ 261 | /******/ // The update info 262 | /******/ var currentUpdateApplyHandlers; 263 | /******/ var queuedInvalidatedModules; 264 | /******/ 265 | /******/ // eslint-disable-next-line no-unused-vars 266 | /******/ __webpack_require__.hmrD = currentModuleData; 267 | /******/ 268 | /******/ __webpack_require__.i.push(function (options) { 269 | /******/ var module = options.module; 270 | /******/ var require = createRequire(options.require, options.id); 271 | /******/ module.hot = createModuleHotObject(options.id, module); 272 | /******/ module.parents = currentParents; 273 | /******/ module.children = []; 274 | /******/ currentParents = []; 275 | /******/ options.require = require; 276 | /******/ }); 277 | /******/ 278 | /******/ __webpack_require__.hmrC = {}; 279 | /******/ __webpack_require__.hmrI = {}; 280 | /******/ 281 | /******/ function createRequire(require, moduleId) { 282 | /******/ var me = installedModules[moduleId]; 283 | /******/ if (!me) return require; 284 | /******/ var fn = function (request) { 285 | /******/ if (me.hot.active) { 286 | /******/ if (installedModules[request]) { 287 | /******/ var parents = installedModules[request].parents; 288 | /******/ if (parents.indexOf(moduleId) === -1) { 289 | /******/ parents.push(moduleId); 290 | /******/ } 291 | /******/ } else { 292 | /******/ currentParents = [moduleId]; 293 | /******/ currentChildModule = request; 294 | /******/ } 295 | /******/ if (me.children.indexOf(request) === -1) { 296 | /******/ me.children.push(request); 297 | /******/ } 298 | /******/ } else { 299 | /******/ console.warn( 300 | /******/ "[HMR] unexpected require(" + 301 | /******/ request + 302 | /******/ ") from disposed module " + 303 | /******/ moduleId 304 | /******/ ); 305 | /******/ currentParents = []; 306 | /******/ } 307 | /******/ return require(request); 308 | /******/ }; 309 | /******/ var createPropertyDescriptor = function (name) { 310 | /******/ return { 311 | /******/ configurable: true, 312 | /******/ enumerable: true, 313 | /******/ get: function () { 314 | /******/ return require[name]; 315 | /******/ }, 316 | /******/ set: function (value) { 317 | /******/ require[name] = value; 318 | /******/ } 319 | /******/ }; 320 | /******/ }; 321 | /******/ for (var name in require) { 322 | /******/ if (Object.prototype.hasOwnProperty.call(require, name) && name !== "e") { 323 | /******/ Object.defineProperty(fn, name, createPropertyDescriptor(name)); 324 | /******/ } 325 | /******/ } 326 | /******/ fn.e = function (chunkId) { 327 | /******/ return trackBlockingPromise(require.e(chunkId)); 328 | /******/ }; 329 | /******/ return fn; 330 | /******/ } 331 | /******/ 332 | /******/ function createModuleHotObject(moduleId, me) { 333 | /******/ var _main = currentChildModule !== moduleId; 334 | /******/ var hot = { 335 | /******/ // private stuff 336 | /******/ _acceptedDependencies: {}, 337 | /******/ _acceptedErrorHandlers: {}, 338 | /******/ _declinedDependencies: {}, 339 | /******/ _selfAccepted: false, 340 | /******/ _selfDeclined: false, 341 | /******/ _selfInvalidated: false, 342 | /******/ _disposeHandlers: [], 343 | /******/ _main: _main, 344 | /******/ _requireSelf: function () { 345 | /******/ currentParents = me.parents.slice(); 346 | /******/ currentChildModule = _main ? undefined : moduleId; 347 | /******/ __webpack_require__(moduleId); 348 | /******/ }, 349 | /******/ 350 | /******/ // Module API 351 | /******/ active: true, 352 | /******/ accept: function (dep, callback, errorHandler) { 353 | /******/ if (dep === undefined) hot._selfAccepted = true; 354 | /******/ else if (typeof dep === "function") hot._selfAccepted = dep; 355 | /******/ else if (typeof dep === "object" && dep !== null) { 356 | /******/ for (var i = 0; i < dep.length; i++) { 357 | /******/ hot._acceptedDependencies[dep[i]] = callback || function () {}; 358 | /******/ hot._acceptedErrorHandlers[dep[i]] = errorHandler; 359 | /******/ } 360 | /******/ } else { 361 | /******/ hot._acceptedDependencies[dep] = callback || function () {}; 362 | /******/ hot._acceptedErrorHandlers[dep] = errorHandler; 363 | /******/ } 364 | /******/ }, 365 | /******/ decline: function (dep) { 366 | /******/ if (dep === undefined) hot._selfDeclined = true; 367 | /******/ else if (typeof dep === "object" && dep !== null) 368 | /******/ for (var i = 0; i < dep.length; i++) 369 | /******/ hot._declinedDependencies[dep[i]] = true; 370 | /******/ else hot._declinedDependencies[dep] = true; 371 | /******/ }, 372 | /******/ dispose: function (callback) { 373 | /******/ hot._disposeHandlers.push(callback); 374 | /******/ }, 375 | /******/ addDisposeHandler: function (callback) { 376 | /******/ hot._disposeHandlers.push(callback); 377 | /******/ }, 378 | /******/ removeDisposeHandler: function (callback) { 379 | /******/ var idx = hot._disposeHandlers.indexOf(callback); 380 | /******/ if (idx >= 0) hot._disposeHandlers.splice(idx, 1); 381 | /******/ }, 382 | /******/ invalidate: function () { 383 | /******/ this._selfInvalidated = true; 384 | /******/ switch (currentStatus) { 385 | /******/ case "idle": 386 | /******/ currentUpdateApplyHandlers = []; 387 | /******/ Object.keys(__webpack_require__.hmrI).forEach(function (key) { 388 | /******/ __webpack_require__.hmrI[key]( 389 | /******/ moduleId, 390 | /******/ currentUpdateApplyHandlers 391 | /******/ ); 392 | /******/ }); 393 | /******/ setStatus("ready"); 394 | /******/ break; 395 | /******/ case "ready": 396 | /******/ Object.keys(__webpack_require__.hmrI).forEach(function (key) { 397 | /******/ __webpack_require__.hmrI[key]( 398 | /******/ moduleId, 399 | /******/ currentUpdateApplyHandlers 400 | /******/ ); 401 | /******/ }); 402 | /******/ break; 403 | /******/ case "prepare": 404 | /******/ case "check": 405 | /******/ case "dispose": 406 | /******/ case "apply": 407 | /******/ (queuedInvalidatedModules = queuedInvalidatedModules || []).push( 408 | /******/ moduleId 409 | /******/ ); 410 | /******/ break; 411 | /******/ default: 412 | /******/ // ignore requests in error states 413 | /******/ break; 414 | /******/ } 415 | /******/ }, 416 | /******/ 417 | /******/ // Management API 418 | /******/ check: hotCheck, 419 | /******/ apply: hotApply, 420 | /******/ status: function (l) { 421 | /******/ if (!l) return currentStatus; 422 | /******/ registeredStatusHandlers.push(l); 423 | /******/ }, 424 | /******/ addStatusHandler: function (l) { 425 | /******/ registeredStatusHandlers.push(l); 426 | /******/ }, 427 | /******/ removeStatusHandler: function (l) { 428 | /******/ var idx = registeredStatusHandlers.indexOf(l); 429 | /******/ if (idx >= 0) registeredStatusHandlers.splice(idx, 1); 430 | /******/ }, 431 | /******/ 432 | /******/ //inherit from previous dispose call 433 | /******/ data: currentModuleData[moduleId] 434 | /******/ }; 435 | /******/ currentChildModule = undefined; 436 | /******/ return hot; 437 | /******/ } 438 | /******/ 439 | /******/ function setStatus(newStatus) { 440 | /******/ currentStatus = newStatus; 441 | /******/ var results = []; 442 | /******/ 443 | /******/ for (var i = 0; i < registeredStatusHandlers.length; i++) 444 | /******/ results[i] = registeredStatusHandlers[i].call(null, newStatus); 445 | /******/ 446 | /******/ return Promise.all(results); 447 | /******/ } 448 | /******/ 449 | /******/ function unblock() { 450 | /******/ if (--blockingPromises === 0) { 451 | /******/ setStatus("ready").then(function () { 452 | /******/ if (blockingPromises === 0) { 453 | /******/ var list = blockingPromisesWaiting; 454 | /******/ blockingPromisesWaiting = []; 455 | /******/ for (var i = 0; i < list.length; i++) { 456 | /******/ list[i](); 457 | /******/ } 458 | /******/ } 459 | /******/ }); 460 | /******/ } 461 | /******/ } 462 | /******/ 463 | /******/ function trackBlockingPromise(promise) { 464 | /******/ switch (currentStatus) { 465 | /******/ case "ready": 466 | /******/ setStatus("prepare"); 467 | /******/ /* fallthrough */ 468 | /******/ case "prepare": 469 | /******/ blockingPromises++; 470 | /******/ promise.then(unblock, unblock); 471 | /******/ return promise; 472 | /******/ default: 473 | /******/ return promise; 474 | /******/ } 475 | /******/ } 476 | /******/ 477 | /******/ function waitForBlockingPromises(fn) { 478 | /******/ if (blockingPromises === 0) return fn(); 479 | /******/ return new Promise(function (resolve) { 480 | /******/ blockingPromisesWaiting.push(function () { 481 | /******/ resolve(fn()); 482 | /******/ }); 483 | /******/ }); 484 | /******/ } 485 | /******/ 486 | /******/ function hotCheck(applyOnUpdate) { 487 | /******/ if (currentStatus !== "idle") { 488 | /******/ throw new Error("check() is only allowed in idle status"); 489 | /******/ } 490 | /******/ return setStatus("check") 491 | /******/ .then(__webpack_require__.hmrM) 492 | /******/ .then(function (update) { 493 | /******/ if (!update) { 494 | /******/ return setStatus(applyInvalidatedModules() ? "ready" : "idle").then( 495 | /******/ function () { 496 | /******/ return null; 497 | /******/ } 498 | /******/ ); 499 | /******/ } 500 | /******/ 501 | /******/ return setStatus("prepare").then(function () { 502 | /******/ var updatedModules = []; 503 | /******/ currentUpdateApplyHandlers = []; 504 | /******/ 505 | /******/ return Promise.all( 506 | /******/ Object.keys(__webpack_require__.hmrC).reduce(function ( 507 | /******/ promises, 508 | /******/ key 509 | /******/ ) { 510 | /******/ __webpack_require__.hmrC[key]( 511 | /******/ update.c, 512 | /******/ update.r, 513 | /******/ update.m, 514 | /******/ promises, 515 | /******/ currentUpdateApplyHandlers, 516 | /******/ updatedModules 517 | /******/ ); 518 | /******/ return promises; 519 | /******/ }, 520 | /******/ []) 521 | /******/ ).then(function () { 522 | /******/ return waitForBlockingPromises(function () { 523 | /******/ if (applyOnUpdate) { 524 | /******/ return internalApply(applyOnUpdate); 525 | /******/ } else { 526 | /******/ return setStatus("ready").then(function () { 527 | /******/ return updatedModules; 528 | /******/ }); 529 | /******/ } 530 | /******/ }); 531 | /******/ }); 532 | /******/ }); 533 | /******/ }); 534 | /******/ } 535 | /******/ 536 | /******/ function hotApply(options) { 537 | /******/ if (currentStatus !== "ready") { 538 | /******/ return Promise.resolve().then(function () { 539 | /******/ throw new Error( 540 | /******/ "apply() is only allowed in ready status (state: " + 541 | /******/ currentStatus + 542 | /******/ ")" 543 | /******/ ); 544 | /******/ }); 545 | /******/ } 546 | /******/ return internalApply(options); 547 | /******/ } 548 | /******/ 549 | /******/ function internalApply(options) { 550 | /******/ options = options || {}; 551 | /******/ 552 | /******/ applyInvalidatedModules(); 553 | /******/ 554 | /******/ var results = currentUpdateApplyHandlers.map(function (handler) { 555 | /******/ return handler(options); 556 | /******/ }); 557 | /******/ currentUpdateApplyHandlers = undefined; 558 | /******/ 559 | /******/ var errors = results 560 | /******/ .map(function (r) { 561 | /******/ return r.error; 562 | /******/ }) 563 | /******/ .filter(Boolean); 564 | /******/ 565 | /******/ if (errors.length > 0) { 566 | /******/ return setStatus("abort").then(function () { 567 | /******/ throw errors[0]; 568 | /******/ }); 569 | /******/ } 570 | /******/ 571 | /******/ // Now in "dispose" phase 572 | /******/ var disposePromise = setStatus("dispose"); 573 | /******/ 574 | /******/ results.forEach(function (result) { 575 | /******/ if (result.dispose) result.dispose(); 576 | /******/ }); 577 | /******/ 578 | /******/ // Now in "apply" phase 579 | /******/ var applyPromise = setStatus("apply"); 580 | /******/ 581 | /******/ var error; 582 | /******/ var reportError = function (err) { 583 | /******/ if (!error) error = err; 584 | /******/ }; 585 | /******/ 586 | /******/ var outdatedModules = []; 587 | /******/ results.forEach(function (result) { 588 | /******/ if (result.apply) { 589 | /******/ var modules = result.apply(reportError); 590 | /******/ if (modules) { 591 | /******/ for (var i = 0; i < modules.length; i++) { 592 | /******/ outdatedModules.push(modules[i]); 593 | /******/ } 594 | /******/ } 595 | /******/ } 596 | /******/ }); 597 | /******/ 598 | /******/ return Promise.all([disposePromise, applyPromise]).then(function () { 599 | /******/ // handle errors in accept handlers and self accepted module load 600 | /******/ if (error) { 601 | /******/ return setStatus("fail").then(function () { 602 | /******/ throw error; 603 | /******/ }); 604 | /******/ } 605 | /******/ 606 | /******/ if (queuedInvalidatedModules) { 607 | /******/ return internalApply(options).then(function (list) { 608 | /******/ outdatedModules.forEach(function (moduleId) { 609 | /******/ if (list.indexOf(moduleId) < 0) list.push(moduleId); 610 | /******/ }); 611 | /******/ return list; 612 | /******/ }); 613 | /******/ } 614 | /******/ 615 | /******/ return setStatus("idle").then(function () { 616 | /******/ return outdatedModules; 617 | /******/ }); 618 | /******/ }); 619 | /******/ } 620 | /******/ 621 | /******/ function applyInvalidatedModules() { 622 | /******/ if (queuedInvalidatedModules) { 623 | /******/ if (!currentUpdateApplyHandlers) currentUpdateApplyHandlers = []; 624 | /******/ Object.keys(__webpack_require__.hmrI).forEach(function (key) { 625 | /******/ queuedInvalidatedModules.forEach(function (moduleId) { 626 | /******/ __webpack_require__.hmrI[key]( 627 | /******/ moduleId, 628 | /******/ currentUpdateApplyHandlers 629 | /******/ ); 630 | /******/ }); 631 | /******/ }); 632 | /******/ queuedInvalidatedModules = undefined; 633 | /******/ return true; 634 | /******/ } 635 | /******/ } 636 | /******/ }(); 637 | /******/ 638 | /******/ /* webpack/runtime/publicPath */ 639 | /******/ !function() { 640 | /******/ __webpack_require__.p = "/_next/"; 641 | /******/ }(); 642 | /******/ 643 | /******/ /* webpack/runtime/react refresh */ 644 | /******/ !function() { 645 | /******/ if (__webpack_require__.i) { 646 | /******/ __webpack_require__.i.push(function(options) { 647 | /******/ var originalFactory = options.factory; 648 | /******/ options.factory = function(moduleObject, moduleExports, webpackRequire) { 649 | /******/ var hasRefresh = typeof self !== "undefined" && !!self.$RefreshInterceptModuleExecution$; 650 | /******/ var cleanup = hasRefresh ? self.$RefreshInterceptModuleExecution$(moduleObject.id) : function() {}; 651 | /******/ try { 652 | /******/ originalFactory.call(this, moduleObject, moduleExports, webpackRequire); 653 | /******/ } finally { 654 | /******/ cleanup(); 655 | /******/ } 656 | /******/ } 657 | /******/ }) 658 | /******/ } 659 | /******/ }(); 660 | /******/ 661 | /******/ /* webpack/runtime/compat */ 662 | /******/ 663 | /******/ 664 | /******/ // noop fns to prevent runtime errors during initialization 665 | /******/ if (typeof self !== "undefined") { 666 | /******/ self.$RefreshReg$ = function () {}; 667 | /******/ self.$RefreshSig$ = function () { 668 | /******/ return function (type) { 669 | /******/ return type; 670 | /******/ }; 671 | /******/ }; 672 | /******/ } 673 | /******/ 674 | /******/ /* webpack/runtime/css loading */ 675 | /******/ !function() { 676 | /******/ var createStylesheet = function(chunkId, fullhref, resolve, reject) { 677 | /******/ var linkTag = document.createElement("link"); 678 | /******/ 679 | /******/ linkTag.rel = "stylesheet"; 680 | /******/ linkTag.type = "text/css"; 681 | /******/ var onLinkComplete = function(event) { 682 | /******/ // avoid mem leaks. 683 | /******/ linkTag.onerror = linkTag.onload = null; 684 | /******/ if (event.type === 'load') { 685 | /******/ resolve(); 686 | /******/ } else { 687 | /******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type); 688 | /******/ var realHref = event && event.target && event.target.href || fullhref; 689 | /******/ var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + realHref + ")"); 690 | /******/ err.code = "CSS_CHUNK_LOAD_FAILED"; 691 | /******/ err.type = errorType; 692 | /******/ err.request = realHref; 693 | /******/ linkTag.parentNode.removeChild(linkTag) 694 | /******/ reject(err); 695 | /******/ } 696 | /******/ } 697 | /******/ linkTag.onerror = linkTag.onload = onLinkComplete; 698 | /******/ linkTag.href = fullhref; 699 | /******/ 700 | /******/ document.head.appendChild(linkTag); 701 | /******/ return linkTag; 702 | /******/ }; 703 | /******/ var findStylesheet = function(href, fullhref) { 704 | /******/ var existingLinkTags = document.getElementsByTagName("link"); 705 | /******/ for(var i = 0; i < existingLinkTags.length; i++) { 706 | /******/ var tag = existingLinkTags[i]; 707 | /******/ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href"); 708 | /******/ if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return tag; 709 | /******/ } 710 | /******/ var existingStyleTags = document.getElementsByTagName("style"); 711 | /******/ for(var i = 0; i < existingStyleTags.length; i++) { 712 | /******/ var tag = existingStyleTags[i]; 713 | /******/ var dataHref = tag.getAttribute("data-href"); 714 | /******/ if(dataHref === href || dataHref === fullhref) return tag; 715 | /******/ } 716 | /******/ }; 717 | /******/ var loadStylesheet = function(chunkId) { 718 | /******/ return new Promise(function(resolve, reject) { 719 | /******/ var href = __webpack_require__.miniCssF(chunkId); 720 | /******/ var fullhref = __webpack_require__.p + href; 721 | /******/ if(findStylesheet(href, fullhref)) return resolve(); 722 | /******/ createStylesheet(chunkId, fullhref, resolve, reject); 723 | /******/ }); 724 | /******/ } 725 | /******/ // no chunk loading 726 | /******/ 727 | /******/ var oldTags = []; 728 | /******/ var newTags = []; 729 | /******/ var applyHandler = function(options) { 730 | /******/ return { dispose: function() { 731 | /******/ for(var i = 0; i < oldTags.length; i++) { 732 | /******/ var oldTag = oldTags[i]; 733 | /******/ if(oldTag.parentNode) oldTag.parentNode.removeChild(oldTag); 734 | /******/ } 735 | /******/ oldTags.length = 0; 736 | /******/ }, apply: function() { 737 | /******/ for(var i = 0; i < newTags.length; i++) newTags[i].rel = "stylesheet"; 738 | /******/ newTags.length = 0; 739 | /******/ } }; 740 | /******/ } 741 | /******/ __webpack_require__.hmrC.miniCss = function(chunkIds, removedChunks, removedModules, promises, applyHandlers, updatedModulesList) { 742 | /******/ applyHandlers.push(applyHandler); 743 | /******/ chunkIds.forEach(function(chunkId) { 744 | /******/ var href = __webpack_require__.miniCssF(chunkId); 745 | /******/ var fullhref = __webpack_require__.p + href; 746 | /******/ var oldTag = findStylesheet(href, fullhref); 747 | /******/ if(!oldTag) return; 748 | /******/ promises.push(new Promise(function(resolve, reject) { 749 | /******/ var tag = createStylesheet(chunkId, fullhref, function() { 750 | /******/ tag.as = "style"; 751 | /******/ tag.rel = "preload"; 752 | /******/ resolve(); 753 | /******/ }, reject); 754 | /******/ oldTags.push(oldTag); 755 | /******/ newTags.push(tag); 756 | /******/ })); 757 | /******/ }); 758 | /******/ } 759 | /******/ }(); 760 | /******/ 761 | /******/ /* webpack/runtime/jsonp chunk loading */ 762 | /******/ !function() { 763 | /******/ // no baseURI 764 | /******/ 765 | /******/ // object to store loaded and loading chunks 766 | /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched 767 | /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded 768 | /******/ var installedChunks = __webpack_require__.hmrS_jsonp = __webpack_require__.hmrS_jsonp || { 769 | /******/ "webpack": 0 770 | /******/ }; 771 | /******/ 772 | /******/ // no chunk on demand loading 773 | /******/ 774 | /******/ // no prefetching 775 | /******/ 776 | /******/ // no preloaded 777 | /******/ 778 | /******/ var currentUpdatedModulesList; 779 | /******/ var waitingUpdateResolves = {}; 780 | /******/ function loadUpdateChunk(chunkId, updatedModulesList) { 781 | /******/ currentUpdatedModulesList = updatedModulesList; 782 | /******/ return new Promise(function(resolve, reject) { 783 | /******/ waitingUpdateResolves[chunkId] = resolve; 784 | /******/ // start update chunk loading 785 | /******/ var url = __webpack_require__.p + __webpack_require__.hu(chunkId); 786 | /******/ // create error before stack unwound to get useful stacktrace later 787 | /******/ var error = new Error(); 788 | /******/ var loadingEnded = function(event) { 789 | /******/ if(waitingUpdateResolves[chunkId]) { 790 | /******/ waitingUpdateResolves[chunkId] = undefined 791 | /******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type); 792 | /******/ var realSrc = event && event.target && event.target.src; 793 | /******/ error.message = 'Loading hot update chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')'; 794 | /******/ error.name = 'ChunkLoadError'; 795 | /******/ error.type = errorType; 796 | /******/ error.request = realSrc; 797 | /******/ reject(error); 798 | /******/ } 799 | /******/ }; 800 | /******/ __webpack_require__.l(url, loadingEnded); 801 | /******/ }); 802 | /******/ } 803 | /******/ 804 | /******/ self["webpackHotUpdate_N_E"] = function(chunkId, moreModules, runtime) { 805 | /******/ for(var moduleId in moreModules) { 806 | /******/ if(__webpack_require__.o(moreModules, moduleId)) { 807 | /******/ currentUpdate[moduleId] = moreModules[moduleId]; 808 | /******/ if(currentUpdatedModulesList) currentUpdatedModulesList.push(moduleId); 809 | /******/ } 810 | /******/ } 811 | /******/ if(runtime) currentUpdateRuntime.push(runtime); 812 | /******/ if(waitingUpdateResolves[chunkId]) { 813 | /******/ waitingUpdateResolves[chunkId](); 814 | /******/ waitingUpdateResolves[chunkId] = undefined; 815 | /******/ } 816 | /******/ }; 817 | /******/ 818 | /******/ var currentUpdateChunks; 819 | /******/ var currentUpdate; 820 | /******/ var currentUpdateRemovedChunks; 821 | /******/ var currentUpdateRuntime; 822 | /******/ function applyHandler(options) { 823 | /******/ if (__webpack_require__.f) delete __webpack_require__.f.jsonpHmr; 824 | /******/ currentUpdateChunks = undefined; 825 | /******/ function getAffectedModuleEffects(updateModuleId) { 826 | /******/ var outdatedModules = [updateModuleId]; 827 | /******/ var outdatedDependencies = {}; 828 | /******/ 829 | /******/ var queue = outdatedModules.map(function (id) { 830 | /******/ return { 831 | /******/ chain: [id], 832 | /******/ id: id 833 | /******/ }; 834 | /******/ }); 835 | /******/ while (queue.length > 0) { 836 | /******/ var queueItem = queue.pop(); 837 | /******/ var moduleId = queueItem.id; 838 | /******/ var chain = queueItem.chain; 839 | /******/ var module = __webpack_require__.c[moduleId]; 840 | /******/ if ( 841 | /******/ !module || 842 | /******/ (module.hot._selfAccepted && !module.hot._selfInvalidated) 843 | /******/ ) 844 | /******/ continue; 845 | /******/ if (module.hot._selfDeclined) { 846 | /******/ return { 847 | /******/ type: "self-declined", 848 | /******/ chain: chain, 849 | /******/ moduleId: moduleId 850 | /******/ }; 851 | /******/ } 852 | /******/ if (module.hot._main) { 853 | /******/ return { 854 | /******/ type: "unaccepted", 855 | /******/ chain: chain, 856 | /******/ moduleId: moduleId 857 | /******/ }; 858 | /******/ } 859 | /******/ for (var i = 0; i < module.parents.length; i++) { 860 | /******/ var parentId = module.parents[i]; 861 | /******/ var parent = __webpack_require__.c[parentId]; 862 | /******/ if (!parent) continue; 863 | /******/ if (parent.hot._declinedDependencies[moduleId]) { 864 | /******/ return { 865 | /******/ type: "declined", 866 | /******/ chain: chain.concat([parentId]), 867 | /******/ moduleId: moduleId, 868 | /******/ parentId: parentId 869 | /******/ }; 870 | /******/ } 871 | /******/ if (outdatedModules.indexOf(parentId) !== -1) continue; 872 | /******/ if (parent.hot._acceptedDependencies[moduleId]) { 873 | /******/ if (!outdatedDependencies[parentId]) 874 | /******/ outdatedDependencies[parentId] = []; 875 | /******/ addAllToSet(outdatedDependencies[parentId], [moduleId]); 876 | /******/ continue; 877 | /******/ } 878 | /******/ delete outdatedDependencies[parentId]; 879 | /******/ outdatedModules.push(parentId); 880 | /******/ queue.push({ 881 | /******/ chain: chain.concat([parentId]), 882 | /******/ id: parentId 883 | /******/ }); 884 | /******/ } 885 | /******/ } 886 | /******/ 887 | /******/ return { 888 | /******/ type: "accepted", 889 | /******/ moduleId: updateModuleId, 890 | /******/ outdatedModules: outdatedModules, 891 | /******/ outdatedDependencies: outdatedDependencies 892 | /******/ }; 893 | /******/ } 894 | /******/ 895 | /******/ function addAllToSet(a, b) { 896 | /******/ for (var i = 0; i < b.length; i++) { 897 | /******/ var item = b[i]; 898 | /******/ if (a.indexOf(item) === -1) a.push(item); 899 | /******/ } 900 | /******/ } 901 | /******/ 902 | /******/ // at begin all updates modules are outdated 903 | /******/ // the "outdated" status can propagate to parents if they don't accept the children 904 | /******/ var outdatedDependencies = {}; 905 | /******/ var outdatedModules = []; 906 | /******/ var appliedUpdate = {}; 907 | /******/ 908 | /******/ var warnUnexpectedRequire = function warnUnexpectedRequire(module) { 909 | /******/ console.warn( 910 | /******/ "[HMR] unexpected require(" + module.id + ") to disposed module" 911 | /******/ ); 912 | /******/ }; 913 | /******/ 914 | /******/ for (var moduleId in currentUpdate) { 915 | /******/ if (__webpack_require__.o(currentUpdate, moduleId)) { 916 | /******/ var newModuleFactory = currentUpdate[moduleId]; 917 | /******/ /** @type {TODO} */ 918 | /******/ var result; 919 | /******/ if (newModuleFactory) { 920 | /******/ result = getAffectedModuleEffects(moduleId); 921 | /******/ } else { 922 | /******/ result = { 923 | /******/ type: "disposed", 924 | /******/ moduleId: moduleId 925 | /******/ }; 926 | /******/ } 927 | /******/ /** @type {Error|false} */ 928 | /******/ var abortError = false; 929 | /******/ var doApply = false; 930 | /******/ var doDispose = false; 931 | /******/ var chainInfo = ""; 932 | /******/ if (result.chain) { 933 | /******/ chainInfo = "\nUpdate propagation: " + result.chain.join(" -> "); 934 | /******/ } 935 | /******/ switch (result.type) { 936 | /******/ case "self-declined": 937 | /******/ if (options.onDeclined) options.onDeclined(result); 938 | /******/ if (!options.ignoreDeclined) 939 | /******/ abortError = new Error( 940 | /******/ "Aborted because of self decline: " + 941 | /******/ result.moduleId + 942 | /******/ chainInfo 943 | /******/ ); 944 | /******/ break; 945 | /******/ case "declined": 946 | /******/ if (options.onDeclined) options.onDeclined(result); 947 | /******/ if (!options.ignoreDeclined) 948 | /******/ abortError = new Error( 949 | /******/ "Aborted because of declined dependency: " + 950 | /******/ result.moduleId + 951 | /******/ " in " + 952 | /******/ result.parentId + 953 | /******/ chainInfo 954 | /******/ ); 955 | /******/ break; 956 | /******/ case "unaccepted": 957 | /******/ if (options.onUnaccepted) options.onUnaccepted(result); 958 | /******/ if (!options.ignoreUnaccepted) 959 | /******/ abortError = new Error( 960 | /******/ "Aborted because " + moduleId + " is not accepted" + chainInfo 961 | /******/ ); 962 | /******/ break; 963 | /******/ case "accepted": 964 | /******/ if (options.onAccepted) options.onAccepted(result); 965 | /******/ doApply = true; 966 | /******/ break; 967 | /******/ case "disposed": 968 | /******/ if (options.onDisposed) options.onDisposed(result); 969 | /******/ doDispose = true; 970 | /******/ break; 971 | /******/ default: 972 | /******/ throw new Error("Unexception type " + result.type); 973 | /******/ } 974 | /******/ if (abortError) { 975 | /******/ return { 976 | /******/ error: abortError 977 | /******/ }; 978 | /******/ } 979 | /******/ if (doApply) { 980 | /******/ appliedUpdate[moduleId] = newModuleFactory; 981 | /******/ addAllToSet(outdatedModules, result.outdatedModules); 982 | /******/ for (moduleId in result.outdatedDependencies) { 983 | /******/ if (__webpack_require__.o(result.outdatedDependencies, moduleId)) { 984 | /******/ if (!outdatedDependencies[moduleId]) 985 | /******/ outdatedDependencies[moduleId] = []; 986 | /******/ addAllToSet( 987 | /******/ outdatedDependencies[moduleId], 988 | /******/ result.outdatedDependencies[moduleId] 989 | /******/ ); 990 | /******/ } 991 | /******/ } 992 | /******/ } 993 | /******/ if (doDispose) { 994 | /******/ addAllToSet(outdatedModules, [result.moduleId]); 995 | /******/ appliedUpdate[moduleId] = warnUnexpectedRequire; 996 | /******/ } 997 | /******/ } 998 | /******/ } 999 | /******/ currentUpdate = undefined; 1000 | /******/ 1001 | /******/ // Store self accepted outdated modules to require them later by the module system 1002 | /******/ var outdatedSelfAcceptedModules = []; 1003 | /******/ for (var j = 0; j < outdatedModules.length; j++) { 1004 | /******/ var outdatedModuleId = outdatedModules[j]; 1005 | /******/ var module = __webpack_require__.c[outdatedModuleId]; 1006 | /******/ if ( 1007 | /******/ module && 1008 | /******/ (module.hot._selfAccepted || module.hot._main) && 1009 | /******/ // removed self-accepted modules should not be required 1010 | /******/ appliedUpdate[outdatedModuleId] !== warnUnexpectedRequire && 1011 | /******/ // when called invalidate self-accepting is not possible 1012 | /******/ !module.hot._selfInvalidated 1013 | /******/ ) { 1014 | /******/ outdatedSelfAcceptedModules.push({ 1015 | /******/ module: outdatedModuleId, 1016 | /******/ require: module.hot._requireSelf, 1017 | /******/ errorHandler: module.hot._selfAccepted 1018 | /******/ }); 1019 | /******/ } 1020 | /******/ } 1021 | /******/ 1022 | /******/ var moduleOutdatedDependencies; 1023 | /******/ 1024 | /******/ return { 1025 | /******/ dispose: function () { 1026 | /******/ currentUpdateRemovedChunks.forEach(function (chunkId) { 1027 | /******/ delete installedChunks[chunkId]; 1028 | /******/ }); 1029 | /******/ currentUpdateRemovedChunks = undefined; 1030 | /******/ 1031 | /******/ var idx; 1032 | /******/ var queue = outdatedModules.slice(); 1033 | /******/ while (queue.length > 0) { 1034 | /******/ var moduleId = queue.pop(); 1035 | /******/ var module = __webpack_require__.c[moduleId]; 1036 | /******/ if (!module) continue; 1037 | /******/ 1038 | /******/ var data = {}; 1039 | /******/ 1040 | /******/ // Call dispose handlers 1041 | /******/ var disposeHandlers = module.hot._disposeHandlers; 1042 | /******/ for (j = 0; j < disposeHandlers.length; j++) { 1043 | /******/ disposeHandlers[j].call(null, data); 1044 | /******/ } 1045 | /******/ __webpack_require__.hmrD[moduleId] = data; 1046 | /******/ 1047 | /******/ // disable module (this disables requires from this module) 1048 | /******/ module.hot.active = false; 1049 | /******/ 1050 | /******/ // remove module from cache 1051 | /******/ delete __webpack_require__.c[moduleId]; 1052 | /******/ 1053 | /******/ // when disposing there is no need to call dispose handler 1054 | /******/ delete outdatedDependencies[moduleId]; 1055 | /******/ 1056 | /******/ // remove "parents" references from all children 1057 | /******/ for (j = 0; j < module.children.length; j++) { 1058 | /******/ var child = __webpack_require__.c[module.children[j]]; 1059 | /******/ if (!child) continue; 1060 | /******/ idx = child.parents.indexOf(moduleId); 1061 | /******/ if (idx >= 0) { 1062 | /******/ child.parents.splice(idx, 1); 1063 | /******/ } 1064 | /******/ } 1065 | /******/ } 1066 | /******/ 1067 | /******/ // remove outdated dependency from module children 1068 | /******/ var dependency; 1069 | /******/ for (var outdatedModuleId in outdatedDependencies) { 1070 | /******/ if (__webpack_require__.o(outdatedDependencies, outdatedModuleId)) { 1071 | /******/ module = __webpack_require__.c[outdatedModuleId]; 1072 | /******/ if (module) { 1073 | /******/ moduleOutdatedDependencies = 1074 | /******/ outdatedDependencies[outdatedModuleId]; 1075 | /******/ for (j = 0; j < moduleOutdatedDependencies.length; j++) { 1076 | /******/ dependency = moduleOutdatedDependencies[j]; 1077 | /******/ idx = module.children.indexOf(dependency); 1078 | /******/ if (idx >= 0) module.children.splice(idx, 1); 1079 | /******/ } 1080 | /******/ } 1081 | /******/ } 1082 | /******/ } 1083 | /******/ }, 1084 | /******/ apply: function (reportError) { 1085 | /******/ // insert new code 1086 | /******/ for (var updateModuleId in appliedUpdate) { 1087 | /******/ if (__webpack_require__.o(appliedUpdate, updateModuleId)) { 1088 | /******/ __webpack_require__.m[updateModuleId] = appliedUpdate[updateModuleId]; 1089 | /******/ } 1090 | /******/ } 1091 | /******/ 1092 | /******/ // run new runtime modules 1093 | /******/ for (var i = 0; i < currentUpdateRuntime.length; i++) { 1094 | /******/ currentUpdateRuntime[i](__webpack_require__); 1095 | /******/ } 1096 | /******/ 1097 | /******/ // call accept handlers 1098 | /******/ for (var outdatedModuleId in outdatedDependencies) { 1099 | /******/ if (__webpack_require__.o(outdatedDependencies, outdatedModuleId)) { 1100 | /******/ var module = __webpack_require__.c[outdatedModuleId]; 1101 | /******/ if (module) { 1102 | /******/ moduleOutdatedDependencies = 1103 | /******/ outdatedDependencies[outdatedModuleId]; 1104 | /******/ var callbacks = []; 1105 | /******/ var errorHandlers = []; 1106 | /******/ var dependenciesForCallbacks = []; 1107 | /******/ for (var j = 0; j < moduleOutdatedDependencies.length; j++) { 1108 | /******/ var dependency = moduleOutdatedDependencies[j]; 1109 | /******/ var acceptCallback = 1110 | /******/ module.hot._acceptedDependencies[dependency]; 1111 | /******/ var errorHandler = 1112 | /******/ module.hot._acceptedErrorHandlers[dependency]; 1113 | /******/ if (acceptCallback) { 1114 | /******/ if (callbacks.indexOf(acceptCallback) !== -1) continue; 1115 | /******/ callbacks.push(acceptCallback); 1116 | /******/ errorHandlers.push(errorHandler); 1117 | /******/ dependenciesForCallbacks.push(dependency); 1118 | /******/ } 1119 | /******/ } 1120 | /******/ for (var k = 0; k < callbacks.length; k++) { 1121 | /******/ try { 1122 | /******/ callbacks[k].call(null, moduleOutdatedDependencies); 1123 | /******/ } catch (err) { 1124 | /******/ if (typeof errorHandlers[k] === "function") { 1125 | /******/ try { 1126 | /******/ errorHandlers[k](err, { 1127 | /******/ moduleId: outdatedModuleId, 1128 | /******/ dependencyId: dependenciesForCallbacks[k] 1129 | /******/ }); 1130 | /******/ } catch (err2) { 1131 | /******/ if (options.onErrored) { 1132 | /******/ options.onErrored({ 1133 | /******/ type: "accept-error-handler-errored", 1134 | /******/ moduleId: outdatedModuleId, 1135 | /******/ dependencyId: dependenciesForCallbacks[k], 1136 | /******/ error: err2, 1137 | /******/ originalError: err 1138 | /******/ }); 1139 | /******/ } 1140 | /******/ if (!options.ignoreErrored) { 1141 | /******/ reportError(err2); 1142 | /******/ reportError(err); 1143 | /******/ } 1144 | /******/ } 1145 | /******/ } else { 1146 | /******/ if (options.onErrored) { 1147 | /******/ options.onErrored({ 1148 | /******/ type: "accept-errored", 1149 | /******/ moduleId: outdatedModuleId, 1150 | /******/ dependencyId: dependenciesForCallbacks[k], 1151 | /******/ error: err 1152 | /******/ }); 1153 | /******/ } 1154 | /******/ if (!options.ignoreErrored) { 1155 | /******/ reportError(err); 1156 | /******/ } 1157 | /******/ } 1158 | /******/ } 1159 | /******/ } 1160 | /******/ } 1161 | /******/ } 1162 | /******/ } 1163 | /******/ 1164 | /******/ // Load self accepted modules 1165 | /******/ for (var o = 0; o < outdatedSelfAcceptedModules.length; o++) { 1166 | /******/ var item = outdatedSelfAcceptedModules[o]; 1167 | /******/ var moduleId = item.module; 1168 | /******/ try { 1169 | /******/ item.require(moduleId); 1170 | /******/ } catch (err) { 1171 | /******/ if (typeof item.errorHandler === "function") { 1172 | /******/ try { 1173 | /******/ item.errorHandler(err, { 1174 | /******/ moduleId: moduleId, 1175 | /******/ module: __webpack_require__.c[moduleId] 1176 | /******/ }); 1177 | /******/ } catch (err2) { 1178 | /******/ if (options.onErrored) { 1179 | /******/ options.onErrored({ 1180 | /******/ type: "self-accept-error-handler-errored", 1181 | /******/ moduleId: moduleId, 1182 | /******/ error: err2, 1183 | /******/ originalError: err 1184 | /******/ }); 1185 | /******/ } 1186 | /******/ if (!options.ignoreErrored) { 1187 | /******/ reportError(err2); 1188 | /******/ reportError(err); 1189 | /******/ } 1190 | /******/ } 1191 | /******/ } else { 1192 | /******/ if (options.onErrored) { 1193 | /******/ options.onErrored({ 1194 | /******/ type: "self-accept-errored", 1195 | /******/ moduleId: moduleId, 1196 | /******/ error: err 1197 | /******/ }); 1198 | /******/ } 1199 | /******/ if (!options.ignoreErrored) { 1200 | /******/ reportError(err); 1201 | /******/ } 1202 | /******/ } 1203 | /******/ } 1204 | /******/ } 1205 | /******/ 1206 | /******/ return outdatedModules; 1207 | /******/ } 1208 | /******/ }; 1209 | /******/ } 1210 | /******/ __webpack_require__.hmrI.jsonp = function (moduleId, applyHandlers) { 1211 | /******/ if (!currentUpdate) { 1212 | /******/ currentUpdate = {}; 1213 | /******/ currentUpdateRuntime = []; 1214 | /******/ currentUpdateRemovedChunks = []; 1215 | /******/ applyHandlers.push(applyHandler); 1216 | /******/ } 1217 | /******/ if (!__webpack_require__.o(currentUpdate, moduleId)) { 1218 | /******/ currentUpdate[moduleId] = __webpack_require__.m[moduleId]; 1219 | /******/ } 1220 | /******/ }; 1221 | /******/ __webpack_require__.hmrC.jsonp = function ( 1222 | /******/ chunkIds, 1223 | /******/ removedChunks, 1224 | /******/ removedModules, 1225 | /******/ promises, 1226 | /******/ applyHandlers, 1227 | /******/ updatedModulesList 1228 | /******/ ) { 1229 | /******/ applyHandlers.push(applyHandler); 1230 | /******/ currentUpdateChunks = {}; 1231 | /******/ currentUpdateRemovedChunks = removedChunks; 1232 | /******/ currentUpdate = removedModules.reduce(function (obj, key) { 1233 | /******/ obj[key] = false; 1234 | /******/ return obj; 1235 | /******/ }, {}); 1236 | /******/ currentUpdateRuntime = []; 1237 | /******/ chunkIds.forEach(function (chunkId) { 1238 | /******/ if ( 1239 | /******/ __webpack_require__.o(installedChunks, chunkId) && 1240 | /******/ installedChunks[chunkId] !== undefined 1241 | /******/ ) { 1242 | /******/ promises.push(loadUpdateChunk(chunkId, updatedModulesList)); 1243 | /******/ currentUpdateChunks[chunkId] = true; 1244 | /******/ } else { 1245 | /******/ currentUpdateChunks[chunkId] = false; 1246 | /******/ } 1247 | /******/ }); 1248 | /******/ if (__webpack_require__.f) { 1249 | /******/ __webpack_require__.f.jsonpHmr = function (chunkId, promises) { 1250 | /******/ if ( 1251 | /******/ currentUpdateChunks && 1252 | /******/ __webpack_require__.o(currentUpdateChunks, chunkId) && 1253 | /******/ !currentUpdateChunks[chunkId] 1254 | /******/ ) { 1255 | /******/ promises.push(loadUpdateChunk(chunkId)); 1256 | /******/ currentUpdateChunks[chunkId] = true; 1257 | /******/ } 1258 | /******/ }; 1259 | /******/ } 1260 | /******/ }; 1261 | /******/ 1262 | /******/ __webpack_require__.hmrM = function() { 1263 | /******/ if (typeof fetch === "undefined") throw new Error("No browser support: need fetch API"); 1264 | /******/ return fetch(__webpack_require__.p + __webpack_require__.hmrF()).then(function(response) { 1265 | /******/ if(response.status === 404) return; // no update available 1266 | /******/ if(!response.ok) throw new Error("Failed to fetch update manifest " + response.statusText); 1267 | /******/ return response.json(); 1268 | /******/ }); 1269 | /******/ }; 1270 | /******/ 1271 | /******/ __webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; }; 1272 | /******/ 1273 | /******/ // install a JSONP callback for chunk loading 1274 | /******/ var webpackJsonpCallback = function(parentChunkLoadingFunction, data) { 1275 | /******/ var chunkIds = data[0]; 1276 | /******/ var moreModules = data[1]; 1277 | /******/ var runtime = data[2]; 1278 | /******/ // add "moreModules" to the modules object, 1279 | /******/ // then flag all "chunkIds" as loaded and fire callback 1280 | /******/ var moduleId, chunkId, i = 0; 1281 | /******/ if(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) { 1282 | /******/ for(moduleId in moreModules) { 1283 | /******/ if(__webpack_require__.o(moreModules, moduleId)) { 1284 | /******/ __webpack_require__.m[moduleId] = moreModules[moduleId]; 1285 | /******/ } 1286 | /******/ } 1287 | /******/ if(runtime) var result = runtime(__webpack_require__); 1288 | /******/ } 1289 | /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data); 1290 | /******/ for(;i < chunkIds.length; i++) { 1291 | /******/ chunkId = chunkIds[i]; 1292 | /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) { 1293 | /******/ installedChunks[chunkId][0](); 1294 | /******/ } 1295 | /******/ installedChunks[chunkId] = 0; 1296 | /******/ } 1297 | /******/ return __webpack_require__.O(result); 1298 | /******/ } 1299 | /******/ 1300 | /******/ var chunkLoadingGlobal = self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []; 1301 | /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0)); 1302 | /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal)); 1303 | /******/ }(); 1304 | /******/ 1305 | /************************************************************************/ 1306 | /******/ 1307 | /******/ // module cache are used so entry inlining is disabled 1308 | /******/ 1309 | /******/ })() 1310 | ; -------------------------------------------------------------------------------- /.next/static/development/_buildManifest.js: -------------------------------------------------------------------------------- 1 | self.__BUILD_MANIFEST = {__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},"/":["static\u002Fchunks\u002Fpages\u002Findex.js"],"/_error":["static\u002Fchunks\u002Fpages\u002F_error.js"],sortedPages:["\u002F","\u002F_app","\u002F_error"]};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB() -------------------------------------------------------------------------------- /.next/static/development/_ssgManifest.js: -------------------------------------------------------------------------------- 1 | self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB() -------------------------------------------------------------------------------- /.next/static/webpack/633457081244afec._.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":[],"r":[],"m":[]} -------------------------------------------------------------------------------- /.next/types/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /app/layout/index.tsx: -------------------------------------------------------------------------------- 1 | export default function RootLayout({ 2 | children, 3 | }: { 4 | children: React.ReactNode 5 | }) { 6 | return ( 7 | 8 | {children} 9 | 10 | ) 11 | } -------------------------------------------------------------------------------- /app/page/index.tsx: -------------------------------------------------------------------------------- 1 | export default function Page() { 2 | return

Welcome, Next.js!

3 | } -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | 5 | // NOTE: This file should not be edited 6 | // see https://nextjs.org/docs/basic-features/typescript for more information. 7 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "portfolio", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "next": "^13.5.4", 13 | "react": "^18.2.0", 14 | "react-dom": "^18.2.0" 15 | }, 16 | "devDependencies": { 17 | "@types/node": "20.8.2", 18 | "@types/react": "18.2.24", 19 | "typescript": "5.2.2" 20 | } 21 | }, 22 | "node_modules/@next/env": { 23 | "version": "13.5.4", 24 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.5.4.tgz", 25 | "integrity": "sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==" 26 | }, 27 | "node_modules/@next/swc-darwin-arm64": { 28 | "version": "13.5.4", 29 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.4.tgz", 30 | "integrity": "sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w==", 31 | "cpu": [ 32 | "arm64" 33 | ], 34 | "optional": true, 35 | "os": [ 36 | "darwin" 37 | ], 38 | "engines": { 39 | "node": ">= 10" 40 | } 41 | }, 42 | "node_modules/@next/swc-darwin-x64": { 43 | "version": "13.5.4", 44 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.4.tgz", 45 | "integrity": "sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw==", 46 | "cpu": [ 47 | "x64" 48 | ], 49 | "optional": true, 50 | "os": [ 51 | "darwin" 52 | ], 53 | "engines": { 54 | "node": ">= 10" 55 | } 56 | }, 57 | "node_modules/@next/swc-linux-arm64-gnu": { 58 | "version": "13.5.4", 59 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.4.tgz", 60 | "integrity": "sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w==", 61 | "cpu": [ 62 | "arm64" 63 | ], 64 | "optional": true, 65 | "os": [ 66 | "linux" 67 | ], 68 | "engines": { 69 | "node": ">= 10" 70 | } 71 | }, 72 | "node_modules/@next/swc-linux-arm64-musl": { 73 | "version": "13.5.4", 74 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.4.tgz", 75 | "integrity": "sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg==", 76 | "cpu": [ 77 | "arm64" 78 | ], 79 | "optional": true, 80 | "os": [ 81 | "linux" 82 | ], 83 | "engines": { 84 | "node": ">= 10" 85 | } 86 | }, 87 | "node_modules/@next/swc-linux-x64-gnu": { 88 | "version": "13.5.4", 89 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.4.tgz", 90 | "integrity": "sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg==", 91 | "cpu": [ 92 | "x64" 93 | ], 94 | "optional": true, 95 | "os": [ 96 | "linux" 97 | ], 98 | "engines": { 99 | "node": ">= 10" 100 | } 101 | }, 102 | "node_modules/@next/swc-linux-x64-musl": { 103 | "version": "13.5.4", 104 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.4.tgz", 105 | "integrity": "sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg==", 106 | "cpu": [ 107 | "x64" 108 | ], 109 | "optional": true, 110 | "os": [ 111 | "linux" 112 | ], 113 | "engines": { 114 | "node": ">= 10" 115 | } 116 | }, 117 | "node_modules/@next/swc-win32-arm64-msvc": { 118 | "version": "13.5.4", 119 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.4.tgz", 120 | "integrity": "sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w==", 121 | "cpu": [ 122 | "arm64" 123 | ], 124 | "optional": true, 125 | "os": [ 126 | "win32" 127 | ], 128 | "engines": { 129 | "node": ">= 10" 130 | } 131 | }, 132 | "node_modules/@next/swc-win32-ia32-msvc": { 133 | "version": "13.5.4", 134 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.4.tgz", 135 | "integrity": "sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw==", 136 | "cpu": [ 137 | "ia32" 138 | ], 139 | "optional": true, 140 | "os": [ 141 | "win32" 142 | ], 143 | "engines": { 144 | "node": ">= 10" 145 | } 146 | }, 147 | "node_modules/@next/swc-win32-x64-msvc": { 148 | "version": "13.5.4", 149 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.4.tgz", 150 | "integrity": "sha512-cyRvlAxwlddlqeB9xtPSfNSCRy8BOa4wtMo0IuI9P7Y0XT2qpDrpFKRyZ7kUngZis59mPVla5k8X1oOJ8RxDYg==", 151 | "cpu": [ 152 | "x64" 153 | ], 154 | "optional": true, 155 | "os": [ 156 | "win32" 157 | ], 158 | "engines": { 159 | "node": ">= 10" 160 | } 161 | }, 162 | "node_modules/@swc/helpers": { 163 | "version": "0.5.2", 164 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", 165 | "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", 166 | "dependencies": { 167 | "tslib": "^2.4.0" 168 | } 169 | }, 170 | "node_modules/@types/node": { 171 | "version": "20.8.2", 172 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.2.tgz", 173 | "integrity": "sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w==", 174 | "dev": true 175 | }, 176 | "node_modules/@types/prop-types": { 177 | "version": "15.7.8", 178 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.8.tgz", 179 | "integrity": "sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==", 180 | "dev": true 181 | }, 182 | "node_modules/@types/react": { 183 | "version": "18.2.24", 184 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.24.tgz", 185 | "integrity": "sha512-Ee0Jt4sbJxMu1iDcetZEIKQr99J1Zfb6D4F3qfUWoR1JpInkY1Wdg4WwCyBjL257D0+jGqSl1twBjV8iCaC0Aw==", 186 | "dev": true, 187 | "dependencies": { 188 | "@types/prop-types": "*", 189 | "@types/scheduler": "*", 190 | "csstype": "^3.0.2" 191 | } 192 | }, 193 | "node_modules/@types/scheduler": { 194 | "version": "0.16.4", 195 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.4.tgz", 196 | "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", 197 | "dev": true 198 | }, 199 | "node_modules/busboy": { 200 | "version": "1.6.0", 201 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 202 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 203 | "dependencies": { 204 | "streamsearch": "^1.1.0" 205 | }, 206 | "engines": { 207 | "node": ">=10.16.0" 208 | } 209 | }, 210 | "node_modules/caniuse-lite": { 211 | "version": "1.0.30001543", 212 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001543.tgz", 213 | "integrity": "sha512-qxdO8KPWPQ+Zk6bvNpPeQIOH47qZSYdFZd6dXQzb2KzhnSXju4Kd7H1PkSJx6NICSMgo/IhRZRhhfPTHYpJUCA==", 214 | "funding": [ 215 | { 216 | "type": "opencollective", 217 | "url": "https://opencollective.com/browserslist" 218 | }, 219 | { 220 | "type": "tidelift", 221 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 222 | }, 223 | { 224 | "type": "github", 225 | "url": "https://github.com/sponsors/ai" 226 | } 227 | ] 228 | }, 229 | "node_modules/client-only": { 230 | "version": "0.0.1", 231 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 232 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 233 | }, 234 | "node_modules/csstype": { 235 | "version": "3.1.2", 236 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 237 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", 238 | "dev": true 239 | }, 240 | "node_modules/glob-to-regexp": { 241 | "version": "0.4.1", 242 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 243 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 244 | }, 245 | "node_modules/graceful-fs": { 246 | "version": "4.2.11", 247 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 248 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 249 | }, 250 | "node_modules/js-tokens": { 251 | "version": "4.0.0", 252 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 253 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 254 | }, 255 | "node_modules/loose-envify": { 256 | "version": "1.4.0", 257 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 258 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 259 | "dependencies": { 260 | "js-tokens": "^3.0.0 || ^4.0.0" 261 | }, 262 | "bin": { 263 | "loose-envify": "cli.js" 264 | } 265 | }, 266 | "node_modules/nanoid": { 267 | "version": "3.3.6", 268 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 269 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 270 | "funding": [ 271 | { 272 | "type": "github", 273 | "url": "https://github.com/sponsors/ai" 274 | } 275 | ], 276 | "bin": { 277 | "nanoid": "bin/nanoid.cjs" 278 | }, 279 | "engines": { 280 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 281 | } 282 | }, 283 | "node_modules/next": { 284 | "version": "13.5.4", 285 | "resolved": "https://registry.npmjs.org/next/-/next-13.5.4.tgz", 286 | "integrity": "sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA==", 287 | "dependencies": { 288 | "@next/env": "13.5.4", 289 | "@swc/helpers": "0.5.2", 290 | "busboy": "1.6.0", 291 | "caniuse-lite": "^1.0.30001406", 292 | "postcss": "8.4.31", 293 | "styled-jsx": "5.1.1", 294 | "watchpack": "2.4.0" 295 | }, 296 | "bin": { 297 | "next": "dist/bin/next" 298 | }, 299 | "engines": { 300 | "node": ">=16.14.0" 301 | }, 302 | "optionalDependencies": { 303 | "@next/swc-darwin-arm64": "13.5.4", 304 | "@next/swc-darwin-x64": "13.5.4", 305 | "@next/swc-linux-arm64-gnu": "13.5.4", 306 | "@next/swc-linux-arm64-musl": "13.5.4", 307 | "@next/swc-linux-x64-gnu": "13.5.4", 308 | "@next/swc-linux-x64-musl": "13.5.4", 309 | "@next/swc-win32-arm64-msvc": "13.5.4", 310 | "@next/swc-win32-ia32-msvc": "13.5.4", 311 | "@next/swc-win32-x64-msvc": "13.5.4" 312 | }, 313 | "peerDependencies": { 314 | "@opentelemetry/api": "^1.1.0", 315 | "react": "^18.2.0", 316 | "react-dom": "^18.2.0", 317 | "sass": "^1.3.0" 318 | }, 319 | "peerDependenciesMeta": { 320 | "@opentelemetry/api": { 321 | "optional": true 322 | }, 323 | "sass": { 324 | "optional": true 325 | } 326 | } 327 | }, 328 | "node_modules/picocolors": { 329 | "version": "1.0.0", 330 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 331 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 332 | }, 333 | "node_modules/postcss": { 334 | "version": "8.4.31", 335 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", 336 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", 337 | "funding": [ 338 | { 339 | "type": "opencollective", 340 | "url": "https://opencollective.com/postcss/" 341 | }, 342 | { 343 | "type": "tidelift", 344 | "url": "https://tidelift.com/funding/github/npm/postcss" 345 | }, 346 | { 347 | "type": "github", 348 | "url": "https://github.com/sponsors/ai" 349 | } 350 | ], 351 | "dependencies": { 352 | "nanoid": "^3.3.6", 353 | "picocolors": "^1.0.0", 354 | "source-map-js": "^1.0.2" 355 | }, 356 | "engines": { 357 | "node": "^10 || ^12 || >=14" 358 | } 359 | }, 360 | "node_modules/react": { 361 | "version": "18.2.0", 362 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 363 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 364 | "dependencies": { 365 | "loose-envify": "^1.1.0" 366 | }, 367 | "engines": { 368 | "node": ">=0.10.0" 369 | } 370 | }, 371 | "node_modules/react-dom": { 372 | "version": "18.2.0", 373 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 374 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 375 | "dependencies": { 376 | "loose-envify": "^1.1.0", 377 | "scheduler": "^0.23.0" 378 | }, 379 | "peerDependencies": { 380 | "react": "^18.2.0" 381 | } 382 | }, 383 | "node_modules/scheduler": { 384 | "version": "0.23.0", 385 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 386 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 387 | "dependencies": { 388 | "loose-envify": "^1.1.0" 389 | } 390 | }, 391 | "node_modules/source-map-js": { 392 | "version": "1.0.2", 393 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 394 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 395 | "engines": { 396 | "node": ">=0.10.0" 397 | } 398 | }, 399 | "node_modules/streamsearch": { 400 | "version": "1.1.0", 401 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 402 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 403 | "engines": { 404 | "node": ">=10.0.0" 405 | } 406 | }, 407 | "node_modules/styled-jsx": { 408 | "version": "5.1.1", 409 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 410 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 411 | "dependencies": { 412 | "client-only": "0.0.1" 413 | }, 414 | "engines": { 415 | "node": ">= 12.0.0" 416 | }, 417 | "peerDependencies": { 418 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 419 | }, 420 | "peerDependenciesMeta": { 421 | "@babel/core": { 422 | "optional": true 423 | }, 424 | "babel-plugin-macros": { 425 | "optional": true 426 | } 427 | } 428 | }, 429 | "node_modules/tslib": { 430 | "version": "2.6.2", 431 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 432 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 433 | }, 434 | "node_modules/typescript": { 435 | "version": "5.2.2", 436 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", 437 | "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", 438 | "dev": true, 439 | "bin": { 440 | "tsc": "bin/tsc", 441 | "tsserver": "bin/tsserver" 442 | }, 443 | "engines": { 444 | "node": ">=14.17" 445 | } 446 | }, 447 | "node_modules/watchpack": { 448 | "version": "2.4.0", 449 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 450 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 451 | "dependencies": { 452 | "glob-to-regexp": "^0.4.1", 453 | "graceful-fs": "^4.1.2" 454 | }, 455 | "engines": { 456 | "node": ">=10.13.0" 457 | } 458 | } 459 | } 460 | } 461 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio", 3 | "version": "1.0.0", 4 | "description": "portfolio", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "dev": "next dev", 9 | "build": "next build", 10 | "start": "next start", 11 | "lint": "next lint" 12 | }, 13 | "keywords": [ 14 | "next", 15 | "react" 16 | ], 17 | "author": "Edmond", 18 | "license": "ISC", 19 | "dependencies": { 20 | "next": "^13.5.4", 21 | "react": "^18.2.0", 22 | "react-dom": "^18.2.0" 23 | }, 24 | "devDependencies": { 25 | "@types/node": "20.8.2", 26 | "@types/react": "18.2.24", 27 | "typescript": "5.2.2" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import type { AppProps } from 'next/app' 2 | 3 | export default function App({ Component, pageProps }: AppProps) { 4 | return 5 | } -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from 'next/document' 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ) 13 | } -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | export default function Page() { 2 | return

Hello, Next.js!

3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": [ 4 | "dom", 5 | "dom.iterable", 6 | "esnext" 7 | ], 8 | "allowJs": true, 9 | "skipLibCheck": true, 10 | "strict": false, 11 | "noEmit": true, 12 | "incremental": true, 13 | "esModuleInterop": true, 14 | "module": "esnext", 15 | "moduleResolution": "node", 16 | "resolveJsonModule": true, 17 | "isolatedModules": true, 18 | "jsx": "preserve", 19 | "plugins": [ 20 | { 21 | "name": "next" 22 | } 23 | ], 24 | "strictNullChecks": true 25 | }, 26 | "include": [ 27 | "next-env.d.ts", 28 | ".next/types/**/*.ts", 29 | "**/*.ts", 30 | "**/*.tsx" 31 | ], 32 | "exclude": [ 33 | "node_modules" 34 | ] 35 | } 36 | --------------------------------------------------------------------------------