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>
10 lines
453 B
Text
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
|