From 816d947ef553feacc3d3a5c8e6fc91c8dc2976ba Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Thu, 3 Sep 2020 11:19:28 -0700 Subject: Create separate file for Vue Router routes Separating routes into its own JS file to allow for easier env customizations. Update store resolve path to make sure right env stores modules are imported in every file. Signed-off-by: Yoshie Muranaka Change-Id: I5c646c81fab54085198b2e179be80c954258f51c --- src/store/api.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/store/api.js') diff --git a/src/store/api.js b/src/store/api.js index 63fd75cb..fa76067c 100644 --- a/src/store/api.js +++ b/src/store/api.js @@ -1,6 +1,6 @@ import Axios from 'axios'; -import router from '../router'; -import store from '@/store'; +import router from '@/router'; +import store from '../store'; const api = Axios.create({ withCredentials: true -- cgit v1.2.3