This commit is contained in:
Eugene Serb 2022-08-11 15:36:06 +03:00
parent 29befb7129
commit 6ebfe1f08d
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ const routes: Array<RouteRecordRaw> = [
component: () => import('@/views/NotFoundView.vue'),
},
{
path: '/:catchAll(.*)',
path: '/:catchAll(.*)*',
redirect: '/404',
},
];

View File

@ -1,5 +1,5 @@
import { createStore, Store } from 'vuex';
import IRootState from './models/IRootState';
import IRootState from '@/store/models/IRootState';
import MGamepads from '@/store/modules/MGamepads';
import MPatterns from '@/store/modules/MPatterns';
import TPatternUnit from '@/models/TPatternUnit';