Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
No EOL
530 B
Text
7 lines
No EOL
530 B
Text
import { isDynamicServerError } from '../../client/components/hooks-server-context';
|
|
import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';
|
|
import { isNextRouterError } from '../../client/components/is-next-router-error';
|
|
import { isDynamicPostpone } from '../../server/app-render/dynamic-rendering';
|
|
export const isDynamicUsageError = (err)=>isDynamicServerError(err) || isBailoutToCSRError(err) || isNextRouterError(err) || isDynamicPostpone(err);
|
|
|
|
//# sourceMappingURL=is-dynamic-usage-error.js.map |