Rocky_Mountain_Vending/.pnpm-store/v10/files/28/bbf95f55ff29fe87dfbe401af12f00ba2cc167931475433901e6b4ed560a51272eca2f0eb8d68c8d29eb8e44cf150327990f4097fc6c33f185ded38cf4ca55
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

66 lines
No EOL
2.2 KiB
Text

function errorIfEnvConflicted(config, key) {
const isPrivateKey = /^(?:NODE_.+)|^(?:__.+)$/i.test(key);
const hasNextRuntimeKey = key === 'NEXT_RUNTIME';
if (isPrivateKey || hasNextRuntimeKey) {
throw Object.defineProperty(new Error(`The key "${key}" under "env" in ${config.configFileName} is not allowed. https://nextjs.org/docs/messages/env-key-not-allowed`), "__NEXT_ERROR_CODE", {
value: "E170",
enumerable: false,
configurable: true
});
}
}
/**
* Collects all environment variables that are using the `NEXT_PUBLIC_` prefix.
*/ export function getNextPublicEnvironmentVariables() {
const defineEnv = [];
for(const key in process.env){
if (key.startsWith('NEXT_PUBLIC_')) {
const value = process.env[key];
if (value != null) {
defineEnv.push([
`process.env.${key}`,
value
]);
}
}
}
defineEnv.sort((a, b)=>a[0].localeCompare(b[0]));
return Object.fromEntries(defineEnv);
}
/**
* Collects the `env` config value from the Next.js config.
*/ export function getNextConfigEnv(config) {
// Refactored code below to use for-of
const defineEnv = {};
const env = config.env;
for(const key in env){
const value = env[key];
if (value != null) {
errorIfEnvConflicted(config, key);
defineEnv[`process.env.${key}`] = value;
}
}
return defineEnv;
}
export function getStaticEnv(config) {
const staticEnv = {
...getNextPublicEnvironmentVariables(),
...getNextConfigEnv(config),
'process.env.NEXT_DEPLOYMENT_ID': config.deploymentId || ''
};
return staticEnv;
}
export function populateStaticEnv(config) {
// since inlining comes after static generation we need
// to ensure this value is assigned to process env so it
// can still be accessed
const staticEnv = getStaticEnv(config);
for(const key in staticEnv){
const innerKey = key.split('.').pop() || '';
if (!process.env[innerKey]) {
process.env[innerKey] = staticEnv[key] || '';
}
}
}
//# sourceMappingURL=static-env.js.map