Files
cartlog-admin/node_modules/next/dist/esm/client/use-client-disallowed.js
2026-01-01 15:25:19 +05:30

17 lines
476 B
JavaScript

const error = new Proxy({}, {
get (_target) {
throw Object.defineProperty(new Error('Using client components is not allowed in this environment.'), "__NEXT_ERROR_CODE", {
value: "E44",
enumerable: false,
configurable: true
});
}
});
export default new Proxy({}, {
get: (_target, p)=>{
if (p === '__esModule') return true;
return error;
}
});
//# sourceMappingURL=use-client-disallowed.js.map