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>
19 lines
No EOL
641 B
Text
19 lines
No EOL
641 B
Text
function setDefaultsImpl({ allowIcannDomains = true, allowPrivateDomains = false, detectIp = true, extractHostname = true, mixedInputs = true, validHosts = null, validateHostname = true, }) {
|
|
return {
|
|
allowIcannDomains,
|
|
allowPrivateDomains,
|
|
detectIp,
|
|
extractHostname,
|
|
mixedInputs,
|
|
validHosts,
|
|
validateHostname,
|
|
};
|
|
}
|
|
const DEFAULT_OPTIONS = /*@__INLINE__*/ setDefaultsImpl({});
|
|
export function setDefaults(options) {
|
|
if (options === undefined) {
|
|
return DEFAULT_OPTIONS;
|
|
}
|
|
return /*@__INLINE__*/ setDefaultsImpl(options);
|
|
}
|
|
//# sourceMappingURL=options.js.map |