Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
9
node_modules/next/dist/esm/build/write-build-id.js
generated
vendored
Normal file
9
node_modules/next/dist/esm/build/write-build-id.js
generated
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue