Files
web/src/main.js
2023-10-14 22:06:43 -04:00

26 lines
485 B
JavaScript

/**
* main.js
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
// Plugins
import { registerPlugins } from '@/plugins'
import '@/styles/style.scss'
import {watchWallet} from "@/blockchain/wallet.js";
import "./socket.js"
BigInt.prototype.toJSON = function() { return this.toString() }
const app = createApp(App)
registerPlugins(app)
app.mount('#app')
await watchWallet()