UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

7 lines (6 loc) 219 B
import { defineNuxtPlugin } from "../nuxt.js"; export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.config.warnHandler ??= (msg, _instance, trace) => { console.warn(`[Vue warn]: ${msg}`, trace); }; });