Skip to content

Commit

Permalink
fix: kill the landing page (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 authored Oct 1, 2024
1 parent 03bcec7 commit 02199aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ jobs:
proxy_username: ${{ env.SSH_USERNAME }}
proxy_key: ${{ secrets.SSH_PRIVATE_KEY }}
source: "dist"
target: "/home/${{ env.SSH_USERNAME }}/${{ matrix.env }}/www/app"
target: "/home/${{ env.SSH_USERNAME }}/${{ matrix.env }}/www"
rm: true
strip_components: 1
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"build-staging": "vite build --base=/app/ --mode preprod",

This comment has been minimized.

Copy link
@raphodn

raphodn Oct 1, 2024

Member

the CI issue is probably the typo where you changed "--mode" to "mode" :)

"build-prod": "vite build --base=/app/ --mode prod",
"build-staging": "vite build mode preprod",
"build-prod": "vite build mode prod",
"preview": "vite preview",
"lint": "eslint",
"lint:fix": "eslint --fix",
Expand Down

0 comments on commit 02199aa

Please sign in to comment.