Initial boiler plate project

This commit is contained in:
2024-09-24 03:52:46 +00:00
parent 6120b2d6c3
commit 154b93e267
10034 changed files with 2079352 additions and 2 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