export port 3000 on dockerfile

This commit is contained in:
Amruth Pillai
2023-11-15 16:44:27 +01:00
parent 8171e90a6c
commit 0b4cb71320
4 changed files with 8 additions and 6 deletions

View File

@ -217,9 +217,9 @@ export class PrinterService {
}
// Set the data of the resume to be printed in the browser's session storage
await page.evaluateOnNewDocument((data: string) => {
window.localStorage.setItem("resume", data);
}, JSON.stringify(resume.data));
await page.evaluateOnNewDocument((data) => {
window.localStorage.setItem("resume", JSON.stringify(data));
}, resume.data);
await page.setViewport({ width: 794, height: 1123 });