Nuxt/test/fixtures/basic/plugins/10.layer-ordering.ts
2023-08-31 11:01:16 +01:00

11 lines
346 B
TypeScript

export default defineNuxtPlugin((nuxtApp) => {
if (useRoute().path === '/plugins/ordering') {
if (!nuxtApp.$layerPluginPre) {
throw createError('layer plugin failed to run before end project plugin')
}
if (nuxtApp.$layerPluginPost) {
throw createError('layer plugin failed to run after end project plugin')
}
}
})