Initial boiler plate project
This commit is contained in:
41
node_modules/next/dist/esm/shared/lib/app-dynamic.js
generated
vendored
Normal file
41
node_modules/next/dist/esm/shared/lib/app-dynamic.js
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
||||
import React from "react";
|
||||
import Loadable from "./lazy-dynamic/loadable";
|
||||
export default function dynamic(dynamicOptions, options) {
|
||||
var _mergedOptions_loadableGenerated;
|
||||
let loadableOptions = {
|
||||
// A loading component is not required, so we default it
|
||||
loading: (param)=>{
|
||||
let { error, isLoading, pastDelay } = param;
|
||||
if (!pastDelay) return null;
|
||||
if (process.env.NODE_ENV !== "production") {
|
||||
if (isLoading) {
|
||||
return null;
|
||||
}
|
||||
if (error) {
|
||||
return /*#__PURE__*/ _jsxs("p", {
|
||||
children: [
|
||||
error.message,
|
||||
/*#__PURE__*/ _jsx("br", {}),
|
||||
error.stack
|
||||
]
|
||||
});
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
};
|
||||
if (typeof dynamicOptions === "function") {
|
||||
loadableOptions.loader = dynamicOptions;
|
||||
}
|
||||
const mergedOptions = {
|
||||
...loadableOptions,
|
||||
...options
|
||||
};
|
||||
return Loadable({
|
||||
...mergedOptions,
|
||||
modules: (_mergedOptions_loadableGenerated = mergedOptions.loadableGenerated) == null ? void 0 : _mergedOptions_loadableGenerated.modules
|
||||
});
|
||||
}
|
||||
|
||||
//# sourceMappingURL=app-dynamic.js.map
|
||||
Reference in New Issue
Block a user