Setup enviroment stuff.

This commit is contained in:
iamBadgers
2024-04-06 14:03:19 -07:00
parent 05e31f5986
commit c481490f78
4 changed files with 13 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<template>
<v-container><div>potato</div></v-container>
<v-container><div>potato</div><div>asdf{{potato}}{{butts}}</div></v-container>
<v-table>
<thead>
<tr>
@@ -20,5 +20,10 @@
<script setup lang="ts">
import { Game, useGameStore } from '../store/gamestore'
const potato = import.meta.env
// const butts = import.meta.env.dev
const butts = import.meta.env.VITE_API_TARGET
const games = useGameStore()
</script>