blob: 0bfb30df717bb3140e5432e0144d7222e5e07c39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import App from "./index.svelte";
import "./index.scss";
import {is_debug, is_development} from "$shared/lib/configuration";
import {noop} from "$shared/lib/helpers";
if (!is_development() && !is_debug()) {
console.log("%c Production; Suppressing logs", "background-color:yellow;color:black;font-size:18px;");
console.log = noop;
}
// @ts-ignore
export default new App({
target: document.getElementById("root"),
});
|