// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ app: { head: { title: "RSSA", titleTemplate: "%s - Admin Dashboard", meta: [ { charset: "utf-8" }, { name: "viewport", content: "width=device-width, initial-scale=1" }, { name: "format-detection", content: "telephone=no" } ], link: [ { rel: "icon", type: "image/x-icon", href: "/favicon.ico" }, { rel: "stylesheet", href: "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap" } ] } }, modules: [ "@pinia/nuxt", ], plugins: [ "~/plugins/vuetify.ts" ], ssr: false, typescript: { shim: false }, build: { transpile: ["vuetify"] }, vite: { define: { "process.env.DEBUG": false }, }, nitro: { serveStatic: true, compressPublicAssets: true, prerender: { } }, devServerHandlers: [], hooks: {}, devtools: { enabled: true, timeline: { enabled: true } }, compatibilityDate: "2024-10-23" });