From 65aebf3a2e3f9db4c55cf350c4554db018c86877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=22axel=5Fverse=22=20=D0=9C=D1=83=D0=B4=D1=80=D0=BE=D0=B2?= Date: Sun, 6 Sep 2026 04:28:07 +0300 Subject: [PATCH] router moved to src --- src/main.js | 2 +- router.js => src/router.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename router.js => src/router.js (100%) diff --git a/src/main.js b/src/main.js index 81a87fe..4f4bbf4 100644 --- a/src/main.js +++ b/src/main.js @@ -2,7 +2,7 @@ import { createApp } from 'vue' import { createPinia } from 'pinia' import '/src/assets/styles/app.css' import App from './App.vue' -import { router } from '/router.js' +import { router } from './router' import ui from '@nuxt/ui/vue-plugin' import { createHead } from '@unhead/vue/client' diff --git a/router.js b/src/router.js similarity index 100% rename from router.js rename to src/router.js