This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/esm/client/use-client-disallowed.js
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

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