website/nuxt.config.js

32 lines
914 B
JavaScript
Raw Normal View History

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]" },
{ hid: "og:description", content: "ngn's (very cool) personal website" },
{ hid: "og:url", content: "https://ngn13.fun" },
{ name: "theme-color", content: "#0c16d1", "data-react-helmet":"true"},
],
link: [{ rel: "stylesheet", href: "https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" }]
},
css: ["@/static/global.css"],
plugins: [],
components: true,
buildModules: [],
modules: ["@nuxtjs/axios"],
axios: {
baseURL: "/",
},
build: {},
serverMiddleware: {
"/api": "~/api",
},
};