mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
17 lines
389 B
Vue
17 lines
389 B
Vue
<template>
|
|
<div>You should not see me</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
alias: ['/setup-should-not-run'],
|
|
middleware: to => to.path === '/navigate-to-error' ? navigateTo('/setup-should-not-run') : undefined,
|
|
})
|
|
if (import.meta.client) {
|
|
console.log('running setup')
|
|
}
|
|
useNuxtApp().hook('app:rendered', () => {
|
|
throw new Error('this should not run')
|
|
})
|
|
</script>
|