remove rogue console.log
This commit is contained in:
@ -510,7 +510,6 @@ export const installInterfaceLogic = (app: Editor) => {
|
|||||||
"loading_samples",
|
"loading_samples",
|
||||||
].forEach((e) => {
|
].forEach((e) => {
|
||||||
let name = `docs_` + e;
|
let name = `docs_` + e;
|
||||||
console.log(name)
|
|
||||||
document.getElementById(name)!.addEventListener("click", async () => {
|
document.getElementById(name)!.addEventListener("click", async () => {
|
||||||
if (name !== "docs_samples") {
|
if (name !== "docs_samples") {
|
||||||
app.currentDocumentationPane = e;
|
app.currentDocumentationPane = e;
|
||||||
|
|||||||
@ -2,27 +2,6 @@ import { defineConfig } from "vite";
|
|||||||
import { VitePWA } from "vite-plugin-pwa";
|
import { VitePWA } from "vite-plugin-pwa";
|
||||||
import viteCompression from "vite-plugin-compression";
|
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 = {
|
const vitePWAconfiguration = {
|
||||||
devOptions: {
|
devOptions: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user