Rocky_Mountain_Vending/.pnpm-store/v10/files/53/07093af1481551913134ef4a1408aa59bade09f8744fa5f0a4eb35fa1b7a7566ca864a9c35998b69240cde77fc66279c93056a12d37daf394d6a9af3eb3fad
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

9 lines
No EOL
347 B
Text

/**
* Formats the manifest depending on the environment variable
* `NODE_ENV`. If it's set to `development`, it will return a pretty printed
* JSON string, otherwise it will return a minified JSON string.
*/ export function formatManifest(manifest) {
return JSON.stringify(manifest, null, 2);
}
//# sourceMappingURL=format-manifest.js.map