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>
19 lines
586 B
Text
19 lines
586 B
Text
'use strict';
|
|
|
|
var fromTokenFile = require('./fromTokenFile');
|
|
var fromWebToken = require('./fromWebToken');
|
|
|
|
|
|
|
|
Object.keys(fromTokenFile).forEach(function (k) {
|
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
enumerable: true,
|
|
get: function () { return fromTokenFile[k]; }
|
|
});
|
|
});
|
|
Object.keys(fromWebToken).forEach(function (k) {
|
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
enumerable: true,
|
|
get: function () { return fromWebToken[k]; }
|
|
});
|
|
});
|