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
583 B
Text
12 lines
583 B
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const nodeVersion = require('../../nodeVersion.js');
|
|
const localVariablesAsync = require('./local-variables-async.js');
|
|
const localVariablesSync = require('./local-variables-sync.js');
|
|
|
|
const localVariablesIntegration = (options = {}) => {
|
|
return nodeVersion.NODE_VERSION.major < 19 ? localVariablesSync.localVariablesSyncIntegration(options) : localVariablesAsync.localVariablesAsyncIntegration(options);
|
|
};
|
|
|
|
exports.localVariablesIntegration = localVariablesIntegration;
|
|
//# sourceMappingURL=index.js.map
|