diff --git a/template/app/main.ts b/template/app/main.ts index 27db147..f3457fe 100644 --- a/template/app/main.ts +++ b/template/app/main.ts @@ -1,6 +1,5 @@ import Vue from 'nativescript-vue'; import App from './components/App.vue'; -{{#store}}import store from './store';{{/store}} {{#devtools}}import VueDevtools from 'nativescript-vue-devtools'; @@ -9,6 +8,8 @@ if(TNS_ENV !== 'production') { } {{/devtools}} +{{#store}}import store from './store';{{/store}} + // Prints Vue logs when --env.production is *NOT* set while building Vue.config.silent = (TNS_ENV === 'production');