website/nuxt.config.js

42 lines
1012 B
JavaScript
Raw Normal View History

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