Revert "Update main.js"

This reverts commit 3033014929.
This commit is contained in:
rafael1209
2024-04-02 00:10:29 +03:00
parent acf06941fa
commit 69cdb9368d

View File

@@ -7,7 +7,7 @@ const SiteOff = {
<p>We are currently performing maintenance. We will be back shortly!</p> <p>We are currently performing maintenance. We will be back shortly!</p>
</div>` </div>`
}; };
const siteIsOff = false; const siteIsOff = true;
import router from "@/router/router"; import router from "@/router/router";
import mitt from 'mitt' import mitt from 'mitt'
@@ -19,7 +19,7 @@ import '@/assets/css/global.css'
export const eventBus = mitt() export const eventBus = mitt()
//const app = createApp(App) // const app = createApp(App)
const app = createApp(siteIsOff ? SiteOff : App); const app = createApp(siteIsOff ? SiteOff : App);
if (!siteIsOff) { if (!siteIsOff) {