Removed "lite" build target

This commit is contained in:
Joel Collins 2020-05-26 10:44:51 +01:00
parent 952085fee7
commit 5f44edaa91
10 changed files with 22 additions and 95 deletions

View file

@ -2,8 +2,7 @@
<!-- Grid managing tab content -->
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
<div class="view-component uk-width-expand">
<connectDisplayLite v-if="liteMode" />
<connectDisplay v-else />
<connectDisplay />
</div>
</div>
</template>
@ -19,9 +18,7 @@ export default {
},
data: function() {
return {
liteMode: process.env.VUE_APP_LITEMODE == "true" ? true : false
};
return {};
}
};
</script>