Rocky_Mountain_Vending/.pnpm-store/v10/files/c8/ebeb2ef49557e8905bf57679a07d64af913a1db5767910f372bc78357925b88386e8c7c014485dcc87096d55f21e8649b9eed51baa9a2e18d0e7543c4f7549
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

17 lines
No EOL
880 B
Text

// This import must go first because it needs to patch webpack chunk loading
// before React patches chunk loading.
import './app-webpack';
import { appBootstrap } from './app-bootstrap';
const instrumentationHooks = // eslint-disable-next-line @next/internal/typechecked-require -- not a module
require('../lib/require-instrumentation-client');
appBootstrap((assetPrefix)=>{
const { hydrate } = require('./app-index');
// Include app-router and layout-router in the main chunk
// eslint-disable-next-line @next/internal/typechecked-require -- Why not relative imports?
require('next/dist/client/components/app-router');
// eslint-disable-next-line @next/internal/typechecked-require -- Why not relative imports?
require('next/dist/client/components/layout-router');
hydrate(instrumentationHooks, assetPrefix);
});
//# sourceMappingURL=app-next.js.map