// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ app: { head: { title: "Enderman's Website", htmlAttrs: { lang: 'en', }, meta: [ { charset: 'utf-8', }, { name: 'viewport', content: 'width=device-width, initial-scale=1', }, { 'http-equiv': 'X-UA-Compatible', content: 'ie=edge', }, ], }, }, components: { dirs: [ { path: '~/components', pathPrefix: false, extensions: ['.vue'], }, ], }, css: ['~/assets/styles/main.css'], plugins: [], modules: ['@nuxt/content', '@nuxtjs/eslint-module', '@pinia/nuxt'], typescript: { typeCheck: true, }, })