123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- Object.defineProperty(exports, "AppInitialProps", {
- enumerable: true,
- get: function() {
- return _utils.AppInitialProps;
- }
- });
- Object.defineProperty(exports, "NextWebVitalsMetric", {
- enumerable: true,
- get: function() {
- return _utils.NextWebVitalsMetric;
- }
- });
- Object.defineProperty(exports, "AppType", {
- enumerable: true,
- get: function() {
- return _utils.AppType;
- }
- });
- exports.default = void 0;
- var _async_to_generator = require("@swc/helpers/lib/_async_to_generator.js").default;
- var _interop_require_default = require("@swc/helpers/lib/_interop_require_default.js").default;
- var _react = _interop_require_default(require("react"));
- var _utils = require("../shared/lib/utils");
- function appGetInitialProps(_) {
- return _appGetInitialProps.apply(this, arguments);
- }
- function _appGetInitialProps() {
- _appGetInitialProps = /**
- * `App` component is used for initialize of pages. It allows for overwriting and full control of the `page` initialization.
- * This allows for keeping state between navigation, custom error handling, injecting additional data.
- */ _async_to_generator(function*({ Component , ctx }) {
- const pageProps = yield (0, _utils).loadGetInitialProps(Component, ctx);
- return {
- pageProps
- };
- });
- return _appGetInitialProps.apply(this, arguments);
- }
- var _Component;
- class App extends (_Component = _react.default.Component) {
- render() {
- const { Component , pageProps } = this.props;
- return /*#__PURE__*/ _react.default.createElement(Component, Object.assign({}, pageProps));
- }
- }
- App.origGetInitialProps = appGetInitialProps;
- App.getInitialProps = appGetInitialProps;
- exports.default = App;
- //# sourceMappingURL=_app.js.map
|