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>
9 lines
542 B
Text
9 lines
542 B
Text
import { booleanSelector, SelectorType } from "@smithy/util-config-provider";
|
|
export const ENV_USE_FIPS_ENDPOINT = "AWS_USE_FIPS_ENDPOINT";
|
|
export const CONFIG_USE_FIPS_ENDPOINT = "use_fips_endpoint";
|
|
export const DEFAULT_USE_FIPS_ENDPOINT = false;
|
|
export const NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = {
|
|
environmentVariableSelector: (env) => booleanSelector(env, ENV_USE_FIPS_ENDPOINT, SelectorType.ENV),
|
|
configFileSelector: (profile) => booleanSelector(profile, CONFIG_USE_FIPS_ENDPOINT, SelectorType.CONFIG),
|
|
default: false,
|
|
};
|