Skip to content

Commit cfd0f9f

Browse files
authored
Merge branch 'main' into dependabot/github_actions/dependabot/fetch-metadata-3
2 parents c509209 + 0423178 commit cfd0f9f

5 files changed

Lines changed: 2176 additions & 1643 deletions

File tree

app/components/OgImage/SimpleBlog.takumi.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ const domain = new URL(useSiteConfig().url).host;
88
</script>
99

1010
<template>
11-
<div class="block size-full border-y-12 border-solid border-gray-500 bg-gray-900 p-16 text-slate-300">
11+
<div class="flex size-full flex-col border-y-12 border-solid border-gray-500 bg-gray-900 p-16 text-slate-300">
1212
<h1 class="mb-4 block text-5xl font-semibold">
1313
{{ title }}
1414
</h1>
1515
<p class="mb-4 block text-2xl">
1616
{{ description }}
1717
</p>
18-
<p class="block text-xl">
18+
<p class="mt-auto block text-xl">
1919
{{ domain }}
2020
</p>
2121
</div>

content/blog/handle-version-skew-after-new-deployment-with-vite-and-vue-router/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: 'Handle version skew after new deployment with Vite and Vue Router'
33
date: 2024-12-01
4+
description: Elegant solution for resolving stale bundle issues in single page applications after new deployment
45
---
56

67
I'd like to share this simple solution how to handle frontend client version skew or not found bundle after new Vue app deployment. I found it while exploring Nuxt's codebase. Original Nuxt's solution [can be found here](https://github.com/nuxt/nuxt/blob/2ea738854e3428f2cb03036630e6415b077fe732/packages/nuxt/src/app/plugins/chunk-reload.client.ts). Props to Nuxt team!

content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Hi! My name is Raman.
44

5-
I'm software developer with focus in web applications written in JavaScript and C#. I absolutely love Vue.js, TypeScript, and passionate about performance. Sometimes I write [blog posts](/blog).
5+
I'm software developer with focus in web applications written in JavaScript and C#. I absolutely love Vue.js, TypeScript, and passionate about UX and performance. Sometimes I write [blog posts](/blog).
66

77
Outside of programming, I enjoy going to concerts and seeing movies at my favorite theater.
88

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nuxt-app",
33
"type": "module",
44
"private": true,
5-
"packageManager": "pnpm@10.33.0",
5+
"packageManager": "pnpm@10.33.2",
66
"scripts": {
77
"build": "nuxt build",
88
"dev": "nuxt dev",
@@ -15,20 +15,20 @@
1515
"@antfu/eslint-config": "^8.2.0",
1616
"@nuxt/content": "^3.13.0",
1717
"@nuxtjs/mdc": "0.21.1",
18-
"@nuxtjs/robots": "6.0.7",
19-
"@nuxtjs/sitemap": "8.0.12",
18+
"@nuxtjs/robots": "6.0.8",
19+
"@nuxtjs/sitemap": "8.0.15",
2020
"@tailwindcss/typography": "^0.5.19",
21-
"@tailwindcss/vite": "^4.2.2",
22-
"@takumi-rs/core": "^1.0.9",
23-
"@tanstack/vue-query": "^5.99.0",
24-
"@vueuse/core": "^14.2.1",
25-
"eslint": "^10.2.0",
26-
"eslint-plugin-better-tailwindcss": "^4.4.1",
27-
"nuxt": "^4.4.2",
28-
"nuxt-og-image": "6.4.1",
29-
"nuxt-seo-utils": "^8.1.7",
30-
"tailwindcss": "^4.2.2",
31-
"typescript": "^6.0.2",
32-
"vue-tsc": "^3.2.6"
21+
"@tailwindcss/vite": "^4.2.4",
22+
"@takumi-rs/core": "^1.1.2",
23+
"@tanstack/vue-query": "^5.100.7",
24+
"@vueuse/core": "^14.3.0",
25+
"eslint": "^10.3.0",
26+
"eslint-plugin-better-tailwindcss": "^4.5.0",
27+
"nuxt": "^4.4.4",
28+
"nuxt-og-image": "6.4.9",
29+
"nuxt-seo-utils": "^8.1.11",
30+
"tailwindcss": "^4.2.4",
31+
"typescript": "^6.0.3",
32+
"vue-tsc": "^3.2.7"
3333
}
3434
}

0 commit comments

Comments
 (0)