-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnuxt.config.ts
34 lines (34 loc) · 931 Bytes
/
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
htmlAttrs: {
lang: "en",
},
title: "QRGen | Generate & scan QR Codes instantly!",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "description",
name: "description",
content: "Generate & scan QR Codes instantly!",
},
// add more meta tags here
{ name: "theme-color", content: "#ffffff" },
{ name: "robots", content: "index, follow" },
{ name: "author", content: "Joshua Sinaga, [email protected]" },
],
},
},
modules: ["nuxt-windicss", "@nuxtjs/google-fonts"],
googleFonts: {
families: {
Inter: true,
},
prefetch: true,
preconnect: true,
preload: true,
useStylesheet: true,
},
});