Files
aletheia/frontend/node_modules/next/dist/esm/build/write-build-id.js
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final
- MANUAL-VENDAS.md: Estratégia comercial e vendas
- MANUAL-TECNICO.md: Infraestrutura e deploy
- README.md: Visão geral do projeto
2026-02-10 15:08:15 -03:00

9 lines
331 B
JavaScript

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