Rocky_Mountain_Vending/.pnpm-store/v10/files/25/0d0742b92320042e16bbd06a802d01e288e040c2e7442bc9207b26bbb1b39b4fade27feb386f56d7e7b59880606250b6749e9a8a4af4701113fc480558d5e0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

19 lines
No EOL
853 B
Text

// TODO-APP: hydration warning
import './app-webpack';
import { renderAppDevOverlay } from 'next/dist/compiled/next-devtools';
import { appBootstrap } from './app-bootstrap';
import { getOwnerStack } from '../next-devtools/userspace/app/errors/stitched-error';
import { isRecoverableError } from './react-client-callbacks/on-recoverable-error';
// eslint-disable-next-line @next/internal/typechecked-require
const instrumentationHooks = require('../lib/require-instrumentation-client');
appBootstrap((assetPrefix)=>{
const { hydrate } = require('./app-index');
try {
hydrate(instrumentationHooks, assetPrefix);
} finally{
const enableCacheIndicator = process.env.__NEXT_CACHE_COMPONENTS;
renderAppDevOverlay(getOwnerStack, isRecoverableError, enableCacheIndicator);
}
});
//# sourceMappingURL=app-next-dev.js.map