Rocky_Mountain_Vending/.pnpm-store/v10/files/26/cbbf13f7e37582d7303dad5b6d39ae795b04e5ff37e58d94261e58b6ec29e7f6ad5326fc3bc8b8ae245c6f40c0ecb15a4558499e80bf073ed9363c3cdb5a06
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
331 B
Text

import { promises } from 'fs';
import { join } from 'path';
import { BUILD_ID_FILE } from '../shared/lib/constants';
export async function writeBuildId(distDir, buildId) {
const buildIdPath = join(distDir, BUILD_ID_FILE);
await promises.writeFile(buildIdPath, buildId, 'utf8');
}
//# sourceMappingURL=write-build-id.js.map