We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00d1227 commit 1a9bc0fCopy full SHA for 1a9bc0f
lib/utils/injectFilesInMem/injectFilesInMem.utils.js
@@ -30,7 +30,7 @@ async function injectFilesInMem(dirs) {
30
const bufferContent = await fs.readFile(filePath);
31
let key = filePath;
32
if (!filePath.startsWith('/')) key = `/${filePath}`;
33
- const bufferObject = JSON.stringify(bufferContent.toString('base64'));
+ const bufferObject = bufferContent.toString('base64');
34
result[key] = { content: bufferObject };
35
}
36
}),
0 commit comments