Regading the PDF issue after deployment

@Sanjana The issue is that the URL is wrong.

Your Resume link is pointing to:

This is trying to load:
https://portfolio-sanjanatu.netlify.app/src/assets/Sanjana_FullStack_Resume.pdf

The only PDF mentioned in your build log is:

4:38:31 PM: dist/assets/Sanjana_FullStack_Resume-wWsbjXDq.pdf 82.84 kB

You also have a post vite build command of cp src/assets/*.pdf dist/assets/
Which is attempting to copy any pdf files from src/assets/ to dist/assets/

Assuming that you have set your Publish directory to dist and that the original filename was Sanjana_FullStack_Resume.pdf that means the file’s locations are:

The one output by vite →
https://portfolio-sanjanatu.netlify.app/assets/Sanjana_FullStack_Resume-wWsbjXDq.pdf

The one you moved over via the cp command →
https://portfolio-sanjanatu.netlify.app/assets/Sanjana_FullStack_Resume.pdf

Both of those exist.