-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
40 lines (36 loc) · 1.73 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { defineNuxtConfig } from "nuxt";
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
export default defineNuxtConfig({
css: ["~/assets/css/main.css"],
target: "server",
app: {
head: {
title: "Smaug6739",
viewport: "width=device-width, initial-scale=1",
charset: "utf-8",
htmlAttrs: {
lang: "en"
},
meta: [
{ name: "robots", content: "follow, index" },
{ name: "theme-color", content: "#00BFFF" },
{ name: "description", content: "Hi, I'm Smaug6739, full-stack developer from France, I also develop software and different libraries." },
// Open Graph / Facebook
{ property: "og:type", content: "website" },
{ property: "og:title", content: "Smaug6739" },
{ property: "og:description", content: "Hi, I'm Smaug6739, full-stack developer from France, I also develop software and different libraries." },
{ property: "og:url", content: `https://smaug-6739.dev` },
{ property: "og:keywords", content: "Developer, Full-Stack, Software, Smaug6739" },
{ property: "og:image", content: `https://smaug-6739.dev/seo/smaug.png` },
// Twitter
{ name: "twitter:title", content: `Smaug6739` },
{ name: "twitter:creator", content: `@Smaug6739` },
{ name: "twitter:site", content: `@Smaug6739` },
{ name: "twitter:url", content: `https://smaug-6739.dev` },
{ name: "twitter:description", content: `Hi, I'm Smaug6739, full-stack developer from France, I also develop software and different libraries.` },
//{ name: "twitter:card", content: `summary_large_image` },
{ name: "twitter:image", content: `https://smaug-6739.dev/seo/smaug.png` },
],
},
},
});