inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

9
node_modules/next/dist/esm/build/write-build-id.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
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