Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
RPSoftCompany committed Feb 4, 2024
1 parent 6df7607 commit c167107
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ArticleCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="md:min-w-[12rem] max-h-[14rem] overflow-hidden cursor-pointer">
<img
class="md:max-w-[12rem] md:max-h-[12rem] w-full rounded-l-md"
:src="`/articles/${name}/img/www/image.jpg`"
:src="`/bridgingTheGap/articles/${name}/img/www/image.jpg`"
/>
</div>
</router-link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ArticlePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const tagClicked = (tag) => {
const getArticleContent = async () => {
try {
const response = await axios.get(`/articles/${articleName.value}/html/index.html`)
const response = await axios.get(`/bridgingTheGap/articles/${articleName.value}/html/index.html`)
if (response.status === 200) {
articleContent.value = response.data
Expand Down

0 comments on commit c167107

Please sign in to comment.