remove rogue console.log

This commit is contained in:
2023-11-18 23:12:27 +01:00
parent 3651a8bb73
commit 6b8e6826cc
2 changed files with 0 additions and 22 deletions

View File

@ -510,7 +510,6 @@ export const installInterfaceLogic = (app: Editor) => {
"loading_samples",
].forEach((e) => {
let name = `docs_` + e;
console.log(name)
document.getElementById(name)!.addEventListener("click", async () => {
if (name !== "docs_samples") {
app.currentDocumentationPane = e;

View File

@ -2,27 +2,6 @@ import { defineConfig } from "vite";
import { VitePWA } from "vite-plugin-pwa";
import viteCompression from "vite-plugin-compression";
const webManifest = {
name: "Topos",
short_name: "Topos",
description: "Live coding environment",
theme_color: "#ffffff",
icons: [
{
src: "./favicon/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "any maskable",
},
{
src: "./favicon/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
};
const vitePWAconfiguration = {
devOptions: {
enabled: true,