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>
12 lines
420 B
Text
12 lines
420 B
Text
export const REGION_ENV_NAME = "AWS_REGION";
|
|
export const REGION_INI_NAME = "region";
|
|
export const NODE_REGION_CONFIG_OPTIONS = {
|
|
environmentVariableSelector: (env) => env[REGION_ENV_NAME],
|
|
configFileSelector: (profile) => profile[REGION_INI_NAME],
|
|
default: () => {
|
|
throw new Error("Region is missing");
|
|
},
|
|
};
|
|
export const NODE_REGION_CONFIG_FILE_OPTIONS = {
|
|
preferredFile: "credentials",
|
|
};
|