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>
18 lines
643 B
Text
18 lines
643 B
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const carrier = require('./carrier.js');
|
|
const scope = require('./scope.js');
|
|
|
|
/** Get the default current scope. */
|
|
function getDefaultCurrentScope() {
|
|
return carrier.getGlobalSingleton('defaultCurrentScope', () => new scope.Scope());
|
|
}
|
|
|
|
/** Get the default isolation scope. */
|
|
function getDefaultIsolationScope() {
|
|
return carrier.getGlobalSingleton('defaultIsolationScope', () => new scope.Scope());
|
|
}
|
|
|
|
exports.getDefaultCurrentScope = getDefaultCurrentScope;
|
|
exports.getDefaultIsolationScope = getDefaultIsolationScope;
|
|
//# sourceMappingURL=defaultScopes.js.map
|