diff --git a/app/.env b/app/.env index 2eeae62..8b13789 100644 --- a/app/.env +++ b/app/.env @@ -1 +1 @@ -VUE_APP_DEMO=true + diff --git a/app/src/components/SVGContent.vue b/app/src/components/SVGContent.vue index 1dcb006..8026d83 100644 --- a/app/src/components/SVGContent.vue +++ b/app/src/components/SVGContent.vue @@ -242,8 +242,8 @@ export default defineComponent({ // Debug Stats let stats: Stats | undefined; - if (process.env.VUE_APP_DEMO) { - console.info("[SVG] DEMO mode active, turning on stats & dev panel."); + if (window.location.search.includes("debug")) { + console.info("[SVG] DEBUG mode active, turning on stats & dev panel."); stats = new Stats(); document.body.appendChild(stats.dom); } else {