feat: Add automatic version.js generation

This commit is contained in:
2024-06-22 12:01:59 -04:00
parent cb3c1ab05f
commit 68c242ae81
7 changed files with 38 additions and 12 deletions

View File

@@ -83,13 +83,14 @@ import { Dialog, Notify } from 'quasar';
import { useAuthStore } from 'src/stores/auth';
import { useRouter } from 'vue-router';
import { AppwriteException } from 'appwrite';
import { APP_VERSION } from 'version.js';
const email = ref('');
const token = ref('');
const userId = ref();
const router = useRouter();
console.log('version:' + process.env.VUE_APP_VERSION);
console.log('version:' + APP_VERSION);
const doTokenLogin = async () => {
const authStore = useAuthStore();