Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/6e1a5936bbe95e47b3c00e9f0e213da9422e14839c37a11b880b6b261aaf68769842127f64360dab268ff982bf8036f6a8a67f73fcbdda4f3e84e9cf02067c
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

24 lines
No EOL
814 B
Text

import '../../server/web/globals';
import { adapter } from '../../server/web/adapter';
import { IncrementalCache } from '../../server/lib/incremental-cache';
import { wrapApiHandler } from '../../server/api-utils';
// Import the userland code.
import handler from 'VAR_USERLAND';
const page = 'VAR_DEFINITION_PAGE';
if (typeof handler !== 'function') {
throw Object.defineProperty(new Error(`The Edge Function "pages${page}" must export a \`default\` function`), "__NEXT_ERROR_CODE", {
value: "E162",
enumerable: false,
configurable: true
});
}
export default function(opts) {
return adapter({
...opts,
IncrementalCache,
page: 'VAR_DEFINITION_PATHNAME',
handler: wrapApiHandler(page, handler)
});
}
//# sourceMappingURL=pages-edge-api.js.map