Skip to content

Commit

Permalink
(fix): changed port Dockerfile and clear up
Browse files Browse the repository at this point in the history
  • Loading branch information
Ondřej Mikolášek committed Feb 14, 2024
1 parent a51f381 commit e73cc40
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ COPY . /src

RUN npm run build

ENV HOST=0.0.0.0 PORT=8080 NODE_ENV=production
ENV HOST=0.0.0.0 PORT=5559 NODE_ENV=production

CMD [ "node", ".output/server/index.mjs" ]
1 change: 0 additions & 1 deletion components/NavMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ function getItems(): Object[] {
menuItems.push({
label: menuItem.attributes?.name,
items: subItems,
link: `/offer/${menuItem.primaryKey}/1`,
});
} else {
menuItems.push({
Expand Down
1 change: 0 additions & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<div>
<Card> </Card>
<Card
v-for="(item, index) in data.queryGroup.recordPage.data"
:key="item.primaryKey"
Expand Down

0 comments on commit e73cc40

Please sign in to comment.