mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 16:51:33 +10:00
export port 3000 on dockerfile
This commit is contained in:
@ -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 });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user