Closed ropodl closed 11 months ago
Multiple install and uninstall somehow made it work.. Sorry the trouble
hey @ropodl, no problem. Are you using the v3 beta version by any chance? I'm still working on getting it fully stable.
So I looked back on the log, turns out it was "nuxt-og-image": "latest" with following nuxt.config.ts Tried v3 beta-12 in vercel causes error.. on /__og_image__/og.png now I back on v2.0.0
import colors from "vuetify/lib/util/colors"; // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ ssr: true, app: { head: { charset: "utf-8", viewport: "width=device-width, initial-scale=1", }, }, devtools: { enabled: true }, experimental: { viewTransition: true, inlineSSRStyles: false, componentIslands: true, }, modules: [ "@vueuse/nuxt", "@pinia/nuxt", "@nuxtjs/google-fonts", "@vite-pwa/nuxt", "@formkit/auto-animate/nuxt", "@pinia-plugin-persistedstate/nuxt", "nuxt-mongoose", "vuetify-nuxt-module", "nuxt-simple-sitemap", "nuxt-delay-hydration", "nuxt-mail", // "nuxt-security", // "nuxt-capo", "nuxt-og-image", ], googleFonts: { download: true, families: { Roboto: { wght: [100, 300, 400, 500, 700, 900], }, }, display: "swap", }, imports: { dirs: ["stores", "stores/frontend"], }, site: { url: process.env.BASE_URL, }, mongoose: { uri: process.env.MONGODB_URI, options: {}, modelsDir: "models", devtools: true, }, piniaPersistedstate: { storage: "localStorage", }, vuetify: { vuetifyOptions: { icons: { defaultSet: "mdi", }, theme: { defaultTheme: "dark", variations: { colors: [ "primary", "secondary", "error", "info", "success", "warning", ], lighten: 5, darken: 5, }, themes: { dark: { dark: true, colors: { primary: "#ff7a03", accent: colors.grey.darken3, secondary: colors.amber.darken3, info: colors.teal.lighten1, warning: colors.amber.base, error: colors.deepOrange.accent4, success: colors.green.accent3, // background: "#252734", }, }, }, }, }, }, sitemap: { sitemapName: "sitemap.xml", defaults: {}, exclude: ["/_nuxt/", "/admin/", "/login", "/api/"], }, mail: { message: { to: process.env.SMTP_USER, }, smtp: { host: "smtp.gmail.com", port: 587, auth: { user: process.env.SMTP_USER, pass: process.env.SMTP_PASSWORD, }, }, }, pwa: { registerType: "autoUpdate", workbox: { cleanupOutdatedCaches: true, navigateFallback: "/", globPatterns: ["/*.{js,css,html,ico,png,svg}"], }, manifest: { ................. }, runtimeConfig: {}, });
Thanks for the details, the latest should be 2.2.4 so this is quite strange.
I'd wait for the v3 stable which will be within the next couple of days!
will test it.. see u in discord then..
Describe the bug
Works properly on localhost
Reproduction
Sorry, I'll try again..
System / Nuxt Info