2021-06-21 04:55:49 +02:00
( self [ "webpackChunk_N_E" ] = self [ "webpackChunk_N_E" ] || [ ] ) . push ( [ [ "pages/_error" ] , {
/***/ "./node_modules/next/dist/pages/_error.js" :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / next / dist / pages / _error . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , exports , _ _webpack _require _ _ ) {
"use strict" ;
/* module decorator */ module = _ _webpack _require _ _ . nmd ( module ) ;
var _classCallCheck = _ _webpack _require _ _ ( /*! ./node_modules/next/node_modules/@babel/runtime/helpers/classCallCheck */ "./node_modules/next/node_modules/@babel/runtime/helpers/classCallCheck.js" ) ;
var _createClass = _ _webpack _require _ _ ( /*! ./node_modules/next/node_modules/@babel/runtime/helpers/createClass */ "./node_modules/next/node_modules/@babel/runtime/helpers/createClass.js" ) ;
var _inherits = _ _webpack _require _ _ ( /*! ./node_modules/next/node_modules/@babel/runtime/helpers/inherits */ "./node_modules/next/node_modules/@babel/runtime/helpers/inherits.js" ) ;
var _possibleConstructorReturn = _ _webpack _require _ _ ( /*! ./node_modules/next/node_modules/@babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/next/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js" ) ;
var _getPrototypeOf = _ _webpack _require _ _ ( /*! ./node_modules/next/node_modules/@babel/runtime/helpers/getPrototypeOf */ "./node_modules/next/node_modules/@babel/runtime/helpers/getPrototypeOf.js" ) ;
function _createSuper ( Derived ) { var hasNativeReflectConstruct = _isNativeReflectConstruct ( ) ; return function _createSuperInternal ( ) { var Super = _getPrototypeOf ( Derived ) , result ; if ( hasNativeReflectConstruct ) { var NewTarget = _getPrototypeOf ( this ) . constructor ; result = Reflect . construct ( Super , arguments , NewTarget ) ; } else { result = Super . apply ( this , arguments ) ; } return _possibleConstructorReturn ( this , result ) ; } ; }
function _isNativeReflectConstruct ( ) { if ( typeof Reflect === "undefined" || ! Reflect . construct ) return false ; if ( Reflect . construct . sham ) return false ; if ( typeof Proxy === "function" ) return true ; try { Date . prototype . toString . call ( Reflect . construct ( Date , [ ] , function ( ) { } ) ) ; return true ; } catch ( e ) { return false ; } }
var _interopRequireDefault = _ _webpack _require _ _ ( /*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/next/node_modules/@babel/runtime/helpers/interopRequireDefault.js" ) ;
exports . _ _esModule = true ;
exports . default = void 0 ;
var _react = _interopRequireDefault ( _ _webpack _require _ _ ( /*! react */ "./node_modules/react/index.js" ) ) ;
var _head = _interopRequireDefault ( _ _webpack _require _ _ ( /*! ../next-server/lib/head */ "./node_modules/next/dist/next-server/lib/head.js" ) ) ;
var statusCodes = {
400 : 'Bad Request' ,
404 : 'This page could not be found' ,
405 : 'Method Not Allowed' ,
500 : 'Internal Server Error'
} ;
function _getInitialProps ( _ref ) {
var res = _ref . res ,
err = _ref . err ;
var statusCode = res && res . statusCode ? res . statusCode : err ? err . statusCode : 404 ;
return {
statusCode : statusCode
} ;
}
/ * *
* ` Error ` component used for handling errors .
* /
var Error = /*#__PURE__*/ function ( _react$default$Compon ) {
_inherits ( Error , _react$default$Compon ) ;
var _super = _createSuper ( Error ) ;
function Error ( ) {
_classCallCheck ( this , Error ) ;
return _super . apply ( this , arguments ) ;
}
_createClass ( Error , [ {
key : "render" ,
value : function render ( ) {
var statusCode = this . props . statusCode ;
var title = this . props . title || statusCodes [ statusCode ] || 'An unexpected error has occurred' ;
return /*#__PURE__*/ _react [ "default" ] . createElement ( "div" , {
style : styles . error
} , /*#__PURE__*/ _react [ "default" ] . createElement ( _head [ "default" ] , null , /*#__PURE__*/ _react [ "default" ] . createElement ( "title" , null , statusCode ? "" . concat ( statusCode , ": " ) . concat ( title ) : 'Application error: a client-side exception has occurred' ) ) , /*#__PURE__*/ _react [ "default" ] . createElement ( "div" , null , /*#__PURE__*/ _react [ "default" ] . createElement ( "style" , {
dangerouslySetInnerHTML : {
_ _html : 'body { margin: 0 }'
}
} ) , statusCode ? /*#__PURE__*/ _react [ "default" ] . createElement ( "h1" , {
style : styles . h1
} , statusCode ) : null , /*#__PURE__*/ _react [ "default" ] . createElement ( "div" , {
style : styles . desc
} , /*#__PURE__*/ _react [ "default" ] . createElement ( "h2" , {
style : styles . h2
} , this . props . title || statusCode ? title : /*#__PURE__*/ _react [ "default" ] . createElement ( _react [ "default" ] . Fragment , null , "Application error: a client-side exception has occurred (" , /*#__PURE__*/ _react [ "default" ] . createElement ( "a" , {
href : "https://nextjs.org/docs/messages/client-side-exception-occurred"
} , "developer guidance" ) , ")" ) , "." ) ) ) ) ;
}
} ] ) ;
return Error ;
} ( _react [ "default" ] . Component ) ;
exports . default = Error ;
Error . displayName = 'ErrorPage' ;
Error . getInitialProps = _getInitialProps ;
Error . origGetInitialProps = _getInitialProps ;
var styles = {
error : {
color : '#000' ,
background : '#fff' ,
fontFamily : '-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Fira Sans", Avenir, "Helvetica Neue", "Lucida Grande", sans-serif' ,
height : '100vh' ,
textAlign : 'center' ,
display : 'flex' ,
flexDirection : 'column' ,
alignItems : 'center' ,
justifyContent : 'center'
} ,
desc : {
display : 'inline-block' ,
textAlign : 'left' ,
lineHeight : '49px' ,
height : '49px' ,
verticalAlign : 'middle'
} ,
h1 : {
display : 'inline-block' ,
borderRight : '1px solid rgba(0, 0, 0,.3)' ,
margin : 0 ,
marginRight : '20px' ,
padding : '10px 23px 10px 0' ,
fontSize : '24px' ,
fontWeight : 500 ,
verticalAlign : 'top'
} ,
h2 : {
fontSize : '14px' ,
fontWeight : 'normal' ,
lineHeight : 'inherit' ,
margin : 0 ,
padding : 0
}
} ;
;
var _a , _b ;
// Legacy CSS implementations will `eval` browser code in a Node.js context
// to extract CSS. For backwards compatibility, we need to check we're in a
// browser context before continuing.
if ( typeof self !== 'undefined' &&
// AMP / No-JS mode does not inject these helpers:
'$RefreshHelpers$' in self ) {
var currentExports = module . _ _proto _ _ . exports ;
var prevExports = ( _b = ( _a = module . hot . data ) === null || _a === void 0 ? void 0 : _a . prevExports ) !== null && _b !== void 0 ? _b : null ;
// This cannot happen in MainTemplate because the exports mismatch between
// templating and execution.
self . $RefreshHelpers$ . registerExportsForReactRefresh ( currentExports , module . id ) ;
// A module can be accepted automatically based on its exports, e.g. when
// it is a Refresh Boundary.
if ( self . $RefreshHelpers$ . isReactRefreshBoundary ( currentExports ) ) {
// Save the previous exports on update so we can compare the boundary
// signatures.
module . hot . dispose ( function ( data ) {
data . prevExports = currentExports ;
} ) ;
// Unconditionally accept an update to this module, we'll check if it's
// still a Refresh Boundary later.
module . hot . accept ( ) ;
// This field is set when the previous version of this module was a
// Refresh Boundary, letting us know we need to check for invalidation or
// enqueue an update.
if ( prevExports !== null ) {
// A boundary can become ineligible if its exports are incompatible
// with the previous exports.
//
// For example, if you add/remove/change exports, we'll want to
// re-execute the importing modules, and force those components to
// re-render. Similarly, if you convert a class component to a
// function, we want to invalidate the boundary.
if ( self . $RefreshHelpers$ . shouldInvalidateReactRefreshBoundary ( prevExports , currentExports ) ) {
module . hot . invalidate ( ) ;
}
else {
self . $RefreshHelpers$ . scheduleUpdate ( ) ;
}
}
}
else {
// Since we just executed the code for the module, it's possible that the
// new exports made it ineligible for being a boundary.
// We only care about the case when we were _previously_ a boundary,
// because we already accepted this update (accidental side effect).
var isNoLongerABoundary = prevExports !== null ;
if ( isNoLongerABoundary ) {
module . hot . invalidate ( ) ;
}
}
}
/***/ } ) ,
/***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F_error&absolutePagePath=next%2Fdist%2Fpages%2F_error!" :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / next / dist / build / webpack / loaders / next - client - pages - loader . js ? page = % 2 F _error & absolutePagePath = next % 2 Fdist % 2 Fpages % 2 F _error ! * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( _ _unused _webpack _module , _ _unused _webpack _exports , _ _webpack _require _ _ ) {
( window . _ _NEXT _P = window . _ _NEXT _P || [ ] ) . push ( [
"/_error" ,
function ( ) {
return _ _webpack _require _ _ ( /*! next/dist/pages/_error */ "./node_modules/next/dist/pages/_error.js" ) ;
}
] ) ;
/***/ } )
} ,
/******/ function ( _ _webpack _require _ _ ) { // webpackRuntimeModules
/******/ // runtime can't be in strict mode because a global variable is assign and maybe created.
/******/
/******/ var _ _webpack _exec _ _ = function ( moduleId ) { return _ _webpack _require _ _ ( _ _webpack _require _ _ . s = moduleId ) ; }
/******/ _ _webpack _require _ _ . O ( 0 , [ "pages/_app" , "main" ] , function ( ) { return _ _webpack _exec _ _ ( "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F_error&absolutePagePath=next%2Fdist%2Fpages%2F_error!" ) ; } ) ;
/******/ var _ _webpack _exports _ _ = _ _webpack _require _ _ . O ( ) ;
/******/ _N _E = _ _webpack _exports _ _ ;
/******/ }
] ) ;
2021-06-21 05:18:30 +02:00
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLy4vbm9kZV9tb2R1bGVzL25leHQvZGlzdC9wYWdlcy9fZXJyb3IuanMiLCJ3ZWJwYWNrOi8vX05fRS8/YmU0NSJdLCJuYW1lcyI6WyJfaW50ZXJvcFJlcXVpcmVEZWZhdWx0IiwicmVxdWlyZSIsImV4cG9ydHMiLCJfcmVhY3QiLCJfaGVhZCIsInN0YXR1c0NvZGVzIiwiX2dldEluaXRpYWxQcm9wcyIsInJlcyIsImVyciIsInN0YXR1c0NvZGUiLCJFcnJvciIsInByb3BzIiwidGl0bGUiLCJjcmVhdGVFbGVtZW50Iiwic3R5bGUiLCJzdHlsZXMiLCJlcnJvciIsImRhbmdlcm91c2x5U2V0SW5uZXJIVE1MIiwiX19odG1sIiwiaDEiLCJkZXNjIiwiaDIiLCJGcmFnbWVudCIsImhyZWYiLCJDb21wb25lbnQiLCJkaXNwbGF5TmFtZSIsImdldEluaXRpYWxQcm9wcyIsIm9yaWdHZXRJbml0aWFsUHJvcHMiLCJjb2xvciIsImJhY2tncm91bmQiLCJmb250RmFtaWx5IiwiaGVpZ2h0IiwidGV4dEFsaWduIiwiZGlzcGxheSIsImZsZXhEaXJlY3Rpb24iLCJhbGlnbkl0ZW1zIiwianVzdGlmeUNvbnRlbnQiLCJsaW5lSGVpZ2h0IiwidmVydGljYWxBbGlnbiIsImJvcmRlclJpZ2h0IiwibWFyZ2luIiwibWFyZ2luUmlnaHQiLCJwYWRkaW5nIiwiZm9udFNpemUiLCJmb250V2VpZ2h0Il0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQWE7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxJQUFJQSxzQkFBc0IsR0FBQ0MsbUJBQU8sQ0FBQyxzSUFBRCxDQUFsQzs7QUFBbUZDLGtCQUFBLEdBQW1CLElBQW5CO0FBQXdCQSxlQUFBLEdBQWdCLEtBQUssQ0FBckI7O0FBQXVCLElBQUlDLE1BQU0sR0FBQ0gsc0JBQXNCLENBQUNDLG1CQUFPLENBQUMsNENBQUQsQ0FBUixDQUFqQzs7QUFBb0QsSUFBSUcsS0FBSyxHQUFDSixzQkFBc0IsQ0FBQ0MsbUJBQU8s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