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.

14 lines (13 loc) 352 B
import { defineNuxtPlugin } from "../nuxt.js"; export default defineNuxtPlugin({ name: "nuxt:webpack-preload", setup(nuxtApp) { nuxtApp.vueApp.mixin({ beforeCreate() { const { modules } = this.$nuxt.ssrContext; const { __moduleIdentifier } = this.$options; modules.add(__moduleIdentifier); } }); } });