// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ app: { baseURL: "/", head: { title: process.env.APP_TITLE, htmlAttrs: { lang: "de", }, meta: [ { charset: "utf-8" }, { name: "viewport", content: "width=device-width, initial-scale=1" }, { hid: "description", name: "description", content: "" }, { name: "format-detection", content: "telephone=no" }, ], link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.png" }], }, }, css: ["~/assets/app.css", "~/assets/ConthraxSemiBold.css"], postcss: { plugins: { tailwindcss: {}, autoprefixer: {}, }, }, compatibilityDate: "2024-04-03", devtools: { enabled: false }, modules: ["@nuxtjs/strapi", "@nuxt/image"], strapi: { url: process.env.STRAPI_URL, prefix: "/api", version: "v5", }, runtimeConfig: { strapi: { url: process.env.STRAPI_URL ?? "localhost:1337", }, app: { title: process.env.APP_TITLE ?? "Feuerwehr", }, public: { strapi: { url: process.env.STRAPI_URL ?? "localhost:1337", }, app: { title: process.env.APP_TITLE ?? "Feuerwehr", }, }, }, });