-
Beta Was this translation helpful? Give feedback.
Answered by
raza2022
Apr 10, 2023
Replies: 1 comment 1 reply
-
I noticed when I opened the console all links inserted as below |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OH, finally I found that issue. now feeling like I am the AI bot without that data :) however, I am listing the solution for any other bot out there
so I see as per parcel-bundler/parcel#470 the issue is not because of the current repo but it's because of the parcel
public-url
field which by default set to '/' so just set it as "./" instead of "/" solved the issue.you can set it by running adding
--public-url
like below, in build script for project's package.json"build": "parcel build index.html --public-url ./"