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>
19 lines
No EOL
559 B
Text
19 lines
No EOL
559 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "writeBuildId", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return writeBuildId;
|
|
}
|
|
});
|
|
const _fs = require("fs");
|
|
const _path = require("path");
|
|
const _constants = require("../shared/lib/constants");
|
|
async function writeBuildId(distDir, buildId) {
|
|
const buildIdPath = (0, _path.join)(distDir, _constants.BUILD_ID_FILE);
|
|
await _fs.promises.writeFile(buildIdPath, buildId, 'utf8');
|
|
}
|
|
|
|
//# sourceMappingURL=write-build-id.js.map |