From 3c06c95f396b6e911076bc3291d5855ed01b5caa Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Sun, 26 Apr 2026 20:18:30 -0700 Subject: cleanup and ready for launch --- playground/index.html | 26 +++++++++++++++++++++++--- playground/src/App.svelte | 31 ++++++++++++++++++++----------- playground/src/favicon.svg | 15 +++++++++++++++ playground/src/main.ts | 10 ++++++++++ 4 files changed, 68 insertions(+), 14 deletions(-) create mode 100644 playground/src/favicon.svg (limited to 'playground') diff --git a/playground/index.html b/playground/index.html index 7487569..53015ed 100644 --- a/playground/index.html +++ b/playground/index.html @@ -3,12 +3,32 @@ - @eeeooolll/graphiql · playground + + @eeeooolll/graphiql • playground + + +
diff --git a/playground/src/App.svelte b/playground/src/App.svelte index dc4f0a5..350f956 100644 --- a/playground/src/App.svelte +++ b/playground/src/App.svelte @@ -1,24 +1,33 @@ - + diff --git a/playground/src/favicon.svg b/playground/src/favicon.svg new file mode 100644 index 0000000..80a7a21 --- /dev/null +++ b/playground/src/favicon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/playground/src/main.ts b/playground/src/main.ts index bf39df9..03a4c37 100644 --- a/playground/src/main.ts +++ b/playground/src/main.ts @@ -1,8 +1,18 @@ + + + +/*** IMPORT ------------------------------------------- ***/ + import { mount } from "svelte"; + +/*** UTILITY ------------------------------------------ ***/ + import App from "./App.svelte"; const target = document.getElementById("app"); +/*** RUNTIME ------------------------------------------ ***/ + if (!target) throw new Error("missing #app target"); -- cgit v1.2.3