about summary refs log tree commit diff
path: root/src/router
diff options
context:
space:
mode:
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/router/index.js b/src/router/index.js
deleted file mode 100644
index 532747a..0000000
--- a/src/router/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import VueRouter from "vue-router";
-
-import HomeView from "../views/HomeView";
-import GalleryView from "../views/GalleryView";
-import DownloadView from "../views/DownloadView";
-import PageNotFoundView from "../views/PageNotFoundView";
-
-export const routes = [
-  { path: "/", name: "Home", component: HomeView },
-  { path: "/o-nas", name: "O nas" },
-  { path: "/download", name: "Do pobrania", component: DownloadView }
-];
-
-export const externalRoutes = [
-  {
-    path: "https://kronika-puszcza.netlify.com",
-    name: "Kronika"
-  },
-  { path: "https://kronika-puszcza.netlify.com/galeria", name: "Galeria" }
-];
-
-export const router = new VueRouter({
-  mode: "history",
-  routes: [...routes, { path: "*", component: PageNotFoundView }]
-});