Rocky_Mountain_Vending/.pnpm-store/v10/files/77/0cb856acd776f7886ea9920c8979070b52c587de2a3bd88e39b1cc522c5b11ef01099c267c753f131c17dbc1f547594aada87ee19ecd1a68a9880eb5f1dbb1
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
557 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.
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "formatManifest", {
enumerable: true,
get: function() {
return formatManifest;
}
});
function formatManifest(manifest) {
return JSON.stringify(manifest, null, 2);
}
//# sourceMappingURL=format-manifest.js.map