diff options
Diffstat (limited to 'src/router/index.js')
-rw-r--r-- | src/router/index.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/router/index.js b/src/router/index.js deleted file mode 100644 index 336bd2e..0000000 --- a/src/router/index.js +++ /dev/null @@ -1,27 +0,0 @@ -import VueRouter from 'vue-router'; - -import HomeView from '../views/HomeView'; -import AboutView from '../views/AboutView'; -import ContactView from '../views/ContactView'; -import DownloadView from '../views/DownloadView'; -import PageNotFoundView from '../views/PageNotFoundView'; - -export const routes = [ - { path: '/', name: 'Home', component: HomeView }, - { path: '/o-nas', name: 'O nas', component: AboutView }, - { path: '/download', name: 'Do pobrania', component: DownloadView }, - { path: '/kontakt', name: 'Kontakt', component: ContactView } -]; - -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 }] -}); |