Rocky_Mountain_Vending/.pnpm-store/v10/files/e8/ad98b9221c1f7bbc365e56857b336e16497a832520950d114abb1e8c9d161704b8a438630bcdffe834b0118b415c4276bc4b019100278ddaa10b1ee782fc1e
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

40 lines
No EOL
1.4 KiB
Text

// TODO: Remove use of `any` type.
import { initialize, version, router, emitter } from './';
import initHMR from './dev/hot-middleware-client';
import { pageBootstrap } from './page-bootstrap';
//@ts-expect-error requires "moduleResolution": "node16" in tsconfig.json and not .ts extension
import { connect } from '@vercel/turbopack-ecmascript-runtime/browser/dev/hmr-client/hmr-client.ts';
window.next = {
version,
turbopack: true,
// router is initialized later so it has to be live-binded
get router () {
return router;
},
emitter
};
self.__next_set_public_path__ = ()=>{};
self.__webpack_hash__ = '';
const devClient = initHMR();
initialize({
devClient
}).then(({ assetPrefix })=>{
// for the page loader
;
self.__turbopack_load_page_chunks__ = (page, chunksData)=>{
const chunkPromises = chunksData.map((c)=>__turbopack_load__(c));
Promise.all(chunkPromises).catch((err)=>console.error('failed to load chunks for page ' + page, err));
};
connect({
addMessageListener (cb) {
devClient.addTurbopackMessageListener(cb);
},
sendMessage: devClient.sendTurbopackMessage,
onUpdateError: devClient.handleUpdateError
});
return pageBootstrap(assetPrefix);
}).catch((err)=>{
console.error('Error was not caught', err);
});
//# sourceMappingURL=next-dev-turbopack.js.map