Rocky_Mountain_Vending/.pnpm-store/v10/files/93/96330a92f564b9dd32e8d52f9d95adb2b4a5503f54a4aa6e6db43bd22ba18c9f3f8e0cba7db6f1bfd0a62823f0d7926bf0ea1f2bc9716544b5ce2b782c82cf
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

19 lines
No EOL
706 B
Text

// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export const defaults = () => ({
includeRuntimeCallStats: false,
showAllEvents: false,
debugMode: false,
maxInvalidationEventsPerEvent: 20,
enableAnimationsFrameHandler: false,
});
/**
* Generates a key that can be used to represent this config in a cache. This is
* used mainly in tests, where we want to avoid re-parsing a file if we have
* already processed it with the same configuration.
*/
export function configToCacheKey(config) {
return JSON.stringify(config);
}
//# sourceMappingURL=Configuration.js.map