// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ modules: [ "@nuxtjs/seo", "@nuxtjs/tailwindcss", "@vueuse/nuxt", "@vue-email/nuxt", ], app: { head: { link: [ { rel: "icon", href: "/favicon.png", type: "image/png", }, ], htmlAttrs: { lang: "en-us" }, }, }, nitro: { preset: "bun", minify: true, prerender: { failOnError: true, }, }, schemaOrg: { enabled: false, }, ogImage: { enabled: false, }, vite: { define: { __VERSION__: JSON.stringify("0.4"), }, }, runtimeConfig: { public: { language: "en-US", titleSeparator: "ยท", siteName: "Lysand", trailingSlash: true, apiHost: "localhost:8080", }, }, site: { url: "https://social.lysand.org", }, });