Update dependency version

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2023-12-29 03:16:38 +06:00
parent e059d43fd5
commit e03e97af76
6 changed files with 1443 additions and 6741 deletions

View File

@@ -16,9 +16,9 @@ withDefaults(defineProps<Props>(), {
title: 'no-title', title: 'no-title',
date: 'no-date', date: 'no-date',
description: 'no-description', description: 'no-description',
image: '/nuxt-blog/no-image_cyyits.png', image: '/blogs-img/blog.jpg',
alt: 'no-alt', alt: 'no-alt',
ogImage: '/nuxt-blog/no-image_cyyits.png', ogImage: '/blogs-img/blog.jpg',
tags: () => [], tags: () => [],
published: false, published: false,
}) })

View File

@@ -16,9 +16,9 @@ withDefaults(defineProps<Props>(), {
title: 'no-title', title: 'no-title',
date: 'no-date', date: 'no-date',
description: 'no-description', description: 'no-description',
image: '/nuxt-blog/no-image_cyyits.png', image: '/blogs-img/blog.jpg',
alt: 'no-alt', alt: 'no-alt',
ogImage: '/nuxt-blog/no-image_cyyits.png', ogImage: '/blogs-img/blog.jpg',
tags: () => [], tags: () => [],
published: false, published: false,
}) })

View File

@@ -4,7 +4,7 @@ date: 1st Mar 2023
description: Here you will lean how to connect your namecheap domain to vercel deployed app. description: Here you will lean how to connect your namecheap domain to vercel deployed app.
image: /blogs-img/blog1.jpg image: /blogs-img/blog1.jpg
alt: How To Connect You Namecheap Domain With Vercel Deployed App alt: How To Connect You Namecheap Domain With Vercel Deployed App
ogImage: /blog-img/blog1.jpg ogImage: /blogs-img/blog1.jpg
tags: ['namecheap', 'vercel'] tags: ['namecheap', 'vercel']
published: true published: true
--- ---

8146
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,22 +12,22 @@
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.42.0", "@antfu/eslint-config": "^0.42.0",
"@formkit/auto-animate": "^0.8.0", "@formkit/auto-animate": "^0.8.0",
"@nuxt/content": "^2.9.0", "@nuxt/content": "^2.10.0",
"@nuxt/image": "^1.0.0", "@nuxt/image": "^1.1.0",
"@nuxtjs/color-mode": "^3.3.0", "@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/fontaine": "^0.4.1", "@nuxtjs/fontaine": "^0.4.1",
"@nuxtjs/robots": "^3.0.0", "@nuxtjs/robots": "^3.0.0",
"@nuxtjs/tailwindcss": "^6.9.5", "@nuxtjs/tailwindcss": "^6.10.3",
"@tailwindcss/forms": "^0.5.7", "@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10", "@tailwindcss/typography": "^0.5.10",
"@vueuse/core": "^10.6.1", "@vueuse/core": "^10.7.1",
"@vueuse/nuxt": "^10.6.1", "@vueuse/nuxt": "^10.7.1",
"eslint": "^8.39.0", "eslint": "^8.39.0",
"nuxt": "^3.8.1", "nuxt": "^3.9.0",
"nuxt-icon": "^0.6.6", "nuxt-icon": "^0.6.8",
"nuxt-og-image": "^3.0.0-rc.12", "nuxt-og-image": "^3.0.0-rc.12",
"nuxt-simple-sitemap": "^4.1.3", "nuxt-simple-sitemap": "^4.2.0",
"typescript": "^5.2.2", "typescript": "^5.3.3",
"vue-content-loader": "^2.0.1" "vue-content-loader": "^2.0.1"
} }
} }

View File

@@ -24,9 +24,9 @@ const formattedData = computed(() => {
path: articles._path, path: articles._path,
title: articles.title || 'no-title available', title: articles.title || 'no-title available',
description: articles.description || 'no-description available', description: articles.description || 'no-description available',
image: articles.image || '/nuxt-blog/no-image_cyyits.png', image: articles.image || '/blogs-img/blog.jpg',
alt: articles.alt || 'no alter data available', alt: articles.alt || 'no alter data available',
ogImage: articles.ogImage || '/nuxt-blog/no-image_cyyits.png', ogImage: articles.ogImage || '/blogs-img/blog.jpg',
date: articles.date || 'not-date-available', date: articles.date || 'not-date-available',
tags: articles.tags || [], tags: articles.tags || [],
published: articles.published || false, published: articles.published || false,