conditionally allow debug if '?debug' in url

master
Tomáš Mládek 2021-01-17 14:59:21 +01:00
parent bceb4dec7a
commit a0a9b02bcf
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
VUE_APP_DEMO=true

View File

@ -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 {