Open yrahcaz opened 1 year ago
render.js contains this line thats causing the problem
var resume = require("resume-schema").resumeJson;
My workaround is to place my resume.json in the project root and replace the above line of code with the following:
var resume = JSON.parse(fs.readFileSync("resume.json", "utf8"));
Fresh setup, no deviations from repo.