Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
17
node_modules/next/dist/esm/client/use-client-disallowed.js
generated
vendored
Normal file
17
node_modules/next/dist/esm/client/use-client-disallowed.js
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue