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

@ -23,8 +23,6 @@ module.exports = {
outputDir: (function() {
if (process.env.VUE_APP_TARGET == "electron-renderer") {
return "./app/dist";
} else if (process.env.VUE_APP_LITEMODE == "true") {
return "./dist-lite";
} else {
return "./dist";
}