-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
36 lines (35 loc) · 811 Bytes
/
nuxt.config.ts
File metadata and controls
36 lines (35 loc) · 811 Bytes
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
import { defineNuxtConfig } from "nuxt/config";
export default defineNuxtConfig({
devtools: { enabled: true },
css: ["~/assets/main.scss", "~/assets/404.scss"],
modules: ["@nuxtjs/eslint-module"],
eslint: {
lintOnStart: false,
},
app: {
head: {
title: "GoTiny | The most lightweight link shortener API",
link: [
{
rel: "icon",
type: "image/png",
href: "/favicon.png",
},
],
meta: [
{
property: "og:title",
content: "GoTiny | The most lightweight link shortener API",
},
{
property: "og:url",
content: "https://www.gotiny.cc",
},
{
property: "og:title",
content: "/gotiny_banner.jpg",
},
],
},
},
});