[x] pages/index/+Page.vue
```
<template>
<div>
<!-- Show marketing page for unauthenticated users -->
<LandingPage v-if="!isAuthenticated" />
<!-- Show SPA for authenticated users -->
<AppShell v-else />
</div>
</template>
```
v1 goal
DEADEND
i sorta got this to work, but hit a brick wall. vike uses node to compile files not vite, and I couldn't register a pinia plugin because they use @/ alias-ed paths, which are not supported by vike config files.
even if i use a relative path , all the deps use @/ imports so they fail
[x] pages/index/+Page.vue
```
<template>
<div>
<!-- Show marketing page for unauthenticated users -->
<LandingPage v-if="!isAuthenticated" />
<!-- Show SPA for authenticated users -->
<AppShell v-else />
</div>
</template>
```
v1 goal
DEADEND
i sorta got this to work, but hit a brick wall. vike uses node to compile files not vite, and I couldn't register a pinia plugin because they use @/ alias-ed paths, which are not supported by vike config files.
even if i use a relative path , all the deps use @/ imports so they fail