From 8083075a67223e33265e81954a1f54fb60e541e9 Mon Sep 17 00:00:00 2001 From: futile Date: Wed, 4 Dec 2024 16:46:29 +0000 Subject: [PATCH] move index, style, and favicon into static/www/ --- Trunk.toml | 3 +++ favicon.ico => static/www/favicon.ico | Bin index.html => static/www/index.html | 4 ++-- style.scss => static/www/style.scss | 0 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 Trunk.toml rename favicon.ico => static/www/favicon.ico (100%) rename index.html => static/www/index.html (87%) rename style.scss => static/www/style.scss (100%) diff --git a/Trunk.toml b/Trunk.toml new file mode 100644 index 0000000..f6405a9 --- /dev/null +++ b/Trunk.toml @@ -0,0 +1,3 @@ +[build] +target = "static/www/index.html" +minify = "on_release" diff --git a/favicon.ico b/static/www/favicon.ico similarity index 100% rename from favicon.ico rename to static/www/favicon.ico diff --git a/index.html b/static/www/index.html similarity index 87% rename from index.html rename to static/www/index.html index a0a5b0d..e584d7f 100644 --- a/index.html +++ b/static/www/index.html @@ -10,9 +10,9 @@ - + - + diff --git a/style.scss b/static/www/style.scss similarity index 100% rename from style.scss rename to static/www/style.scss