Files
voyage/apps/public-web/node_modules/next/dist/esm/client/use-client-disallowed.js
PascalSchattenburg d147843c76 feat(blog): add file-based blog with dynamic slugs, MDX content and layout shell
- Introduced blog routing using Next.js App Router
- Implemented dynamic [slug] pages for blog posts
- Added MDX-based content loading via lib/posts
- Integrated shared TopBar layout with navigation
- Established clear content, lib and component separation
2026-01-22 14:14:15 +01: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