Rocky_Mountain_Vending/.pnpm-store/v10/files/7b/e0d6c8047f8d18354de6f90f7483a7e46c6d13b381fef497ea8eb9df5209081979b3802e3d9dccb622a7792f2c62e9ffa5718e83da9569deb61b89093e407f
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

10 lines
453 B
Text

import { NODE_VERSION } from '../../nodeVersion.js';
import { localVariablesAsyncIntegration } from './local-variables-async.js';
import { localVariablesSyncIntegration } from './local-variables-sync.js';
const localVariablesIntegration = (options = {}) => {
return NODE_VERSION.major < 19 ? localVariablesSyncIntegration(options) : localVariablesAsyncIntegration(options);
};
export { localVariablesIntegration };
//# sourceMappingURL=index.js.map