2023-10-30 21:05:02 +00:00
|
|
|
import { defineNuxtPlugin } from '../nuxt'
|
2021-01-18 12:46:19 +00:00
|
|
|
|
2023-04-11 11:58:43 +00:00
|
|
|
export default defineNuxtPlugin({
|
|
|
|
name: 'nuxt:webpack-preload',
|
|
|
|
setup (nuxtApp) {
|
|
|
|
nuxtApp.vueApp.mixin({
|
|
|
|
beforeCreate () {
|
2024-07-03 20:13:23 +00:00
|
|
|
const { modules } = this.$nuxt.ssrContext
|
2023-04-11 11:58:43 +00:00
|
|
|
const { __moduleIdentifier } = this.$options
|
2024-07-03 20:13:23 +00:00
|
|
|
modules.add(__moduleIdentifier)
|
2024-04-05 18:08:32 +00:00
|
|
|
},
|
2023-04-11 11:58:43 +00:00
|
|
|
})
|
2024-04-05 18:08:32 +00:00
|
|
|
},
|
2021-06-18 17:16:51 +00:00
|
|
|
})
|