Skip to content

Commit

Permalink
html header update
Browse files Browse the repository at this point in the history
  • Loading branch information
bigune committed Nov 29, 2024
1 parent 5fb4806 commit a41cfd0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,18 @@ export default defineNuxtConfig({
meta: [
{ name: "charset", content: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1, maximum-scale=1" },
{ name: "description", content: process.env.LAMBDA_DESCRIPTION },
{ name: "og:url", content: process.env.LAMBDA_FAVICON },
{ name: "og:type", content: "article" },

{ name: "url", content: process.env.LAMBDA_BASE_URL },
{ name: "type", content: "website" },
{ name: "title", content: process.env.LAMBDA_TITLE },
{ name: "description", content: process.env.LAMBDA_DESCRIPTION },
{ name: "image", content: process.env.LAMBDA_BASE_URL + '/assets/images/bg.png' },

{ name: "og:url", content: process.env.LAMBDA_BASE_URL },
{ name: "og:type", content: "website" },
{ name: "og:title", content: process.env.LAMBDA_TITLE },
{ name: "og:description", content: process.env.LAMBDA_DESCRIPTION },
{ name: "og:image", content: process.env.LAMBDA_FAVICON}
{ name: "og:image", content: process.env.LAMBDA_BASE_URL + '/assets/images/bg.png' }
],
link: [
{ rel: "icon", href: process.env.LAMBDA_FAVICON },
Expand Down

0 comments on commit a41cfd0

Please sign in to comment.