Skip to content

Commit

Permalink
fix: use correct path for og image
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorien Grönwald committed Jul 5, 2024
1 parent 24ef8d6 commit 25d3b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tsx/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function App() {
const ogImage = document.getElementById('og-image');
if (ogImage) {
const currentDomain = window.location.origin;
ogImage.setAttribute('content', currentDomain + '/public/assets/images/open-graph-image.png');
ogImage.setAttribute('content', currentDomain + '/assets/images/open-graph-image.png');
}

return (
Expand Down

0 comments on commit 25d3b8a

Please sign in to comment.