Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/78dc93df2370bdae0044e719d5983fff52a5f0a290b49c3daaba6985e5491a93d55dc02f459be162204eb8f957540031d416965a3b059599f7d73dc014a3b2
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

62 lines
No EOL
1.8 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
PagesSegmentConfigSchemaKeys: null,
parsePagesSegmentConfig: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
PagesSegmentConfigSchemaKeys: function() {
return PagesSegmentConfigSchemaKeys;
},
parsePagesSegmentConfig: function() {
return parsePagesSegmentConfig;
}
});
const _zod = require("next/dist/compiled/zod");
const _zod1 = require("../../../shared/lib/zod");
/**
* The schema for the page segment config.
*/ const PagesSegmentConfigSchema = _zod.z.object({
/**
* The runtime to use for the page.
*/ runtime: _zod.z.enum([
'edge',
'experimental-edge',
'nodejs'
]).optional(),
/**
* The maximum duration for the page render.
*/ maxDuration: _zod.z.number().optional(),
/**
* The exported config object for the page.
*/ config: _zod.z.object({
/**
* The runtime to use for the page.
*/ runtime: _zod.z.enum([
'edge',
'experimental-edge',
'nodejs'
]).optional(),
/**
* The maximum duration for the page render.
*/ maxDuration: _zod.z.number().optional()
}).optional()
});
function parsePagesSegmentConfig(data, route) {
const parsed = PagesSegmentConfigSchema.safeParse(data, {});
if (!parsed.success) {
throw (0, _zod1.formatZodError)(`Invalid segment configuration options detected for "${route}". Read more at https://nextjs.org/docs/messages/invalid-page-config`, parsed.error);
}
return parsed.data;
}
const PagesSegmentConfigSchemaKeys = PagesSegmentConfigSchema.keyof().options;
//# sourceMappingURL=pages-segment-config.js.map