Rocky_Mountain_Vending/.pnpm-store/v10/files/87/4d04f8b3de6d60ee740d393b851b67aab9754f9799ac0dba99604532dcf39bb9cca5bb739c5d491868f83eb67b3c931177d419658c841ce65214bfa8723f99
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

33 lines
No EOL
1.1 KiB
Text

// A client-side entry point for Turbopack builds. Includes logic to load chunks,
// but does not include development-time features like hot module reloading.
import '../lib/require-instrumentation-client';
// TODO: Remove use of `any` type.
import { initialize, version, router, emitter, hydrate } from './';
// TODO: This seems necessary, but is a module in the `dev` directory.
import { displayContent } from './dev/fouc';
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__ = '';
initialize({}).then(()=>{
// 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));
};
return hydrate({
beforeRender: displayContent
});
}).catch((err)=>{
console.error('Error was not caught', err);
});
//# sourceMappingURL=next-turbopack.js.map