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>
11 lines
368 B
Text
11 lines
368 B
Text
const AWS_DEFAULTS_MODE_ENV = "AWS_DEFAULTS_MODE";
|
|
const AWS_DEFAULTS_MODE_CONFIG = "defaults_mode";
|
|
export const NODE_DEFAULTS_MODE_CONFIG_OPTIONS = {
|
|
environmentVariableSelector: (env) => {
|
|
return env[AWS_DEFAULTS_MODE_ENV];
|
|
},
|
|
configFileSelector: (profile) => {
|
|
return profile[AWS_DEFAULTS_MODE_CONFIG];
|
|
},
|
|
default: "legacy",
|
|
};
|