Compare commits

...

6 Commits

Author SHA1 Message Date
e530f23103 chore: Update Dependencies 2024-03-10 15:12:34 +01:00
9dd25fa545 fix: missing template 2024-02-17 15:36:37 +01:00
cfcb55dc33 chore(deps): Update dependencies & switched to pnpm 2024-02-17 15:36:22 +01:00
54fefdd927 chore(deps): Update dependencies 2024-02-17 14:07:28 +01:00
fe525afd9f fix: Remove Console Log 2023-11-11 17:43:00 +01:00
e5bbecb689 fix: Set Auth Layout to not leak App 2023-11-11 16:42:29 +01:00
8 changed files with 8994 additions and 14 deletions

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
node-linker=hoisted

BIN
bun.lockb

Binary file not shown.

View File

@@ -7,7 +7,7 @@ defineProps<{
</script>
<template>
<NuxtLayout>
<NuxtLayout name="auth">
<UPageError :error="error" />
</NuxtLayout>
</template>

View File

@@ -1,4 +1,4 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
// https://nuxt.com/docs/api/configuration/nbun uxt-config
export default defineNuxtConfig({
extends: ['@nuxt/ui-pro'],
modules: ['@nuxt/ui'],

View File

@@ -12,17 +12,17 @@
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@iconify-json/heroicons": "^1.1.13",
"@antfu/eslint-config": "^2.8.0",
"@iconify-json/heroicons": "^1.1.20",
"@nuxt/devtools": "latest",
"@nuxt/ui-pro": "^0.4.2",
"eslint": "^8.53.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"@nuxt/ui-pro": "^1.0.2",
"eslint": "^8.57.0",
"eslint-plugin-tailwindcss": "^3.14.2",
"laravel-echo": "^1.15.3",
"nuxt": "^3.8.1",
"nuxt": "^3.10.3",
"pusher-js": "^8.3.0",
"typescript": "^5.2.2",
"vue": "^3.3.8",
"typescript": "^5.3.3",
"vue": "^3.4.19",
"vue-router": "^4.2.5"
}
}

View File

@@ -1,9 +1,5 @@
<script setup lang="ts">
definePageMeta({ middleware: ['auth'] })
const user = useUser()
console.log(user.value)
</script>
<template>

View File

@@ -1,3 +1,6 @@
<template>
</template>
<script setup lang="ts">
definePageMeta({ middleware: ['guest'], layout: 'auth' })
const { logout } = useAuth()

8980
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff