Rocky_Mountain_Vending/.pnpm-store/v10/files/89/09263d29a0b54390ee46f303767a33653f74aa08af9a1a798b672693f7a95633fc49d0dbe1a3f4f07d3496c3daf3ebc237d759373f95e7414f4fd66904b4ab
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
480 B
Text

import Loadable from './lazy-dynamic/loadable';
export default function dynamic(dynamicOptions, options) {
const loadableOptions = {};
if (typeof dynamicOptions === 'function') {
loadableOptions.loader = dynamicOptions;
}
const mergedOptions = {
...loadableOptions,
...options
};
return Loadable({
...mergedOptions,
modules: mergedOptions.loadableGenerated?.modules
});
}
//# sourceMappingURL=app-dynamic.js.map