use tracker-list on client and improve interstitials

This commit is contained in:
CoolElectronics 2023-08-15 20:54:47 -04:00
parent 494ef6a4a9
commit 9ec17943c2
No known key found for this signature in database
GPG key ID: F63593D168636C50
9 changed files with 307 additions and 260 deletions

View file

@ -1,5 +1,16 @@
import App from "./App.svelte";
import "./index.css";
if (import.meta.env.VITE_ADRIFT_DEV) {
console.log(
"%cADRIFT RUNNING IN DEVELOPMENT MODE",
"background: blue; color: white; font-size: x-large"
);
} else {
console.log(
"%cADRIFT RUNNING IN PRODUCTION MODE",
"background: blue; color: white; font-size: x-large"
);
}
const app = new App({
target: document.getElementById("app")!,