mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-23 03:42:37 +00:00
15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
import { defineNuxtPlugin } from '../nuxt'
|
|
|
|
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)
|
|
},
|
|
})
|
|
},
|
|
})
|