Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/44d1fd6b48ce247a82713d95729081157ba16aff609d9e22ed229d2cc99ee298d916a8495481c8debab8a0c9c9655bdbe00c8f3500c6c4530acf825e8db067
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

14 lines
383 B
Text

export const mergeConfigFiles = (...files) => {
const merged = {};
for (const file of files) {
for (const [key, values] of Object.entries(file)) {
if (merged[key] !== undefined) {
Object.assign(merged[key], values);
}
else {
merged[key] = values;
}
}
}
return merged;
};