2023-04-16 20:12:24 +03:00
|
|
|
export default {
|
|
|
|
head: {
|
|
|
|
title: "[ngn]",
|
|
|
|
htmlAttrs: {
|
|
|
|
lang: "en",
|
|
|
|
},
|
|
|
|
meta: [
|
|
|
|
{ charset: "utf-8" },
|
|
|
|
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
|
|
|
{ hid: "description", name: "description", content: "" },
|
|
|
|
{ name: "format-detection", content: "telephone=no" },
|
|
|
|
{ hid: "og:title", content: "[ngn]" },
|
2023-05-27 21:16:21 +03:00
|
|
|
{ hid: "og:description", content: "personal website of ngn | read my blogs, check out my projects, discover cool resources" },
|
2023-04-16 20:12:24 +03:00
|
|
|
{ hid: "og:url", content: "https://ngn13.fun" },
|
2023-05-27 21:16:21 +03:00
|
|
|
{ name: "theme-color", content: "#141414", "data-react-helmet":"true"},
|
2023-04-16 20:12:24 +03:00
|
|
|
],
|
2023-05-27 21:16:21 +03:00
|
|
|
|
|
|
|
link: [
|
|
|
|
{ rel: "stylesheet", href: "https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" },
|
|
|
|
{ rel: "stylesheet", href: "https://cdn.jsdelivr.net/gh/lipis/flag-icons@6.6.6/css/flag-icons.min.css" }
|
|
|
|
]
|
2023-04-16 20:12:24 +03:00
|
|
|
},
|
|
|
|
css: ["@/static/global.css"],
|
|
|
|
plugins: [],
|
|
|
|
components: true,
|
|
|
|
buildModules: [],
|
|
|
|
modules: ["@nuxtjs/axios"],
|
|
|
|
axios: {
|
|
|
|
baseURL: "/",
|
|
|
|
},
|
|
|
|
build: {},
|
|
|
|
serverMiddleware: {
|
|
|
|
"/api": "~/api",
|
2023-05-27 21:16:21 +03:00
|
|
|
"/l": "~/links",
|
2023-04-16 20:12:24 +03:00
|
|
|
},
|
|
|
|
};
|