feat: первое подключение фронтенда
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 8s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 54s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 27s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 6s

This commit is contained in:
2026-05-11 01:33:38 +03:00
parent 71e7d84e0f
commit 779b6aba77
21 changed files with 942 additions and 365 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import ToastNotification from '@/components/ui/ToastNotification.vue'
const auth = useAuthStore()
const route = useRoute()
const isAuthPage = computed(() => route.path === '/login')
const isAuthPage = computed(() => Boolean(route.meta.public))
interface Toast { id: number; message: string; type: 'success' | 'error' | 'info' }
const toasts = ref<Toast[]>([])