Skip to content

Commit

Permalink
chore: devtools only on local env
Browse files Browse the repository at this point in the history
  • Loading branch information
RenanLorijola committed Nov 23, 2023
1 parent 7b4ec15 commit 56c9c90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/container/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<VueQueryDevtools />
<VueQueryDevtools v-if="isLocal" />
<AppBar :showAppBar="confirmedUser ?? undefined">
<v-main style="background-color: #f5f5f5">
<v-container
Expand All @@ -19,10 +19,12 @@ import { authStore } from 'stores';
import { computed, onMounted } from 'vue';
import create from 'vue-zustand';
import { ElMessage } from 'element-plus';
import { VueQueryDevtools } from '@tanstack/vue-query-devtools'
import { VueQueryDevtools } from '@tanstack/vue-query-devtools';
import { useRouter } from 'vue-router';
const isLocal = process.env.VUE_APP_MF_ENV === 'local';
const router = useRouter();
import { AppBar } from '@/layouts/AppBar';
Expand Down

0 comments on commit 56c9c90

Please sign in to comment.