Sienna
Sienna
TTCTheo's Typesafe Cult
Created by Sienna on 3/20/2025 in #questions
t3: accessing static files server side
process.cwd() was the fix, thanks! I'm now able to use code like these examples to reference files in the /public directory as well as files in /src/server.
const pdf = fs.readFileSync(
path.join(
process.cwd(),
`/src/server/pdf/example.pdf`,
),
);
const font = fs.readFileSync(
path.join(process.cwd(), "/public/font.otf"),
);
const pdf = fs.readFileSync(
path.join(
process.cwd(),
`/src/server/pdf/example.pdf`,
),
);
const font = fs.readFileSync(
path.join(process.cwd(), "/public/font.otf"),
);
4 replies