From 6127e132e40da81382b25c591a8cbd84bb5200f6 Mon Sep 17 00:00:00 2001 From: Klemek Date: Mon, 27 Apr 2026 13:24:51 +0200 Subject: [PATCH] fix: faster page loading with no async --- .github/workflows/deploy.yml | 3 +-- package.json | 2 +- src/App.vue | 6 ++---- src/router/index.ts | 10 ++++------ src/views/AboutView.vue | 17 +++-------------- src/views/ArticleView.vue | 7 +++---- src/views/NotFoundView.vue | 16 +++------------- vite.d.ts | 2 ++ 8 files changed, 19 insertions(+), 44 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d338a1f..a4101c5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,8 +20,7 @@ jobs: with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - run: git clone ${{ vars.ARTICLES_REPOSITORY }} articles - - run: bun run build-only - - run: bun run post-build + - run: bun run build - uses: actions/upload-artifact@v7 with: name: production-files diff --git a/package.json b/package.json index 2fce9c5..cb7cf9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "md-blog", - "version": "1.9.0", + "version": "1.9.1", "private": true, "type": "module", "repository": "https://github.com/klemek/md-blog", diff --git a/src/App.vue b/src/App.vue index 2b9536c..b645cec 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,8 +1,6 @@