We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4a1ed commit b48aaceCopy full SHA for b48aace
src/modules/Home/views/home.vue
@@ -64,7 +64,6 @@ export default defineComponent({
64
onMounted(() => {
65
setTitle('home')
66
console.log(common.title)
67
- console.log(import.meta.env.VITE_APP_ENV)
68
})
69
70
const form = reactive({
src/store.ts
@@ -11,7 +11,7 @@ for (const path in domainStoreFiles) {
11
}
12
13
const store = createStore({
14
- strict: import.meta.env.VITE_APP_ENV !== 'production',
+ strict: import.meta.env.DEV,
15
modules: {
16
...globalStores,
17
...domainStores
0 commit comments