2024-02-24 00:37:31 +08:00

21 lines
495 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isInternalComponent", {
enumerable: true,
get: function() {
return isInternalComponent;
}
});
function isInternalComponent(pathname) {
switch(pathname){
case "next/dist/pages/_app":
case "next/dist/pages/_document":
return true;
default:
return false;
}
}
//# sourceMappingURL=is-internal-component.js.map