From a2a1a27502f2b5ec323517bbb911f8899c1ff83a Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 12 Dec 2020 21:49:00 +0100 Subject: [PATCH] web: fix icons not being included in static container --- README.md | 2 +- helm/Chart.yaml | 2 +- {icons => web/icons}/authentik-working.ai | 0 {icons => web/icons}/brand.png | Bin {icons => web/icons}/brand.svg | 0 {icons => web/icons}/icon.png | Bin {icons => web/icons}/icon.svg | 0 {icons => web/icons}/icon_left_brand.png | Bin {icons => web/icons}/icon_left_brand.svg | 0 {icons => web/icons}/icon_top_brand.png | Bin {icons => web/icons}/icon_top_brand.svg | 0 web/rollup.config.js | 2 +- 12 files changed, 3 insertions(+), 3 deletions(-) rename {icons => web/icons}/authentik-working.ai (100%) rename {icons => web/icons}/brand.png (100%) rename {icons => web/icons}/brand.svg (100%) rename {icons => web/icons}/icon.png (100%) rename {icons => web/icons}/icon.svg (100%) rename {icons => web/icons}/icon_left_brand.png (100%) rename {icons => web/icons}/icon_left_brand.svg (100%) rename {icons => web/icons}/icon_top_brand.png (100%) rename {icons => web/icons}/icon_top_brand.svg (100%) diff --git a/README.md b/README.md index 7842cf896..760d95245 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -authentik logo +authentik logo --- diff --git a/helm/Chart.yaml b/helm/Chart.yaml index e24cff38a..e8745edc2 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -5,7 +5,7 @@ home: https://goauthentik.io sources: - https://github.com/BeryJu/authentik version: "0.13.0-rc1" -icon: https://raw.githubusercontent.com/BeryJu/authentik/master/icons/icon.svg +icon: https://raw.githubusercontent.com/BeryJu/authentik/master/web/icons/icon.svg dependencies: - name: postgresql version: 9.4.1 diff --git a/icons/authentik-working.ai b/web/icons/authentik-working.ai similarity index 100% rename from icons/authentik-working.ai rename to web/icons/authentik-working.ai diff --git a/icons/brand.png b/web/icons/brand.png similarity index 100% rename from icons/brand.png rename to web/icons/brand.png diff --git a/icons/brand.svg b/web/icons/brand.svg similarity index 100% rename from icons/brand.svg rename to web/icons/brand.svg diff --git a/icons/icon.png b/web/icons/icon.png similarity index 100% rename from icons/icon.png rename to web/icons/icon.png diff --git a/icons/icon.svg b/web/icons/icon.svg similarity index 100% rename from icons/icon.svg rename to web/icons/icon.svg diff --git a/icons/icon_left_brand.png b/web/icons/icon_left_brand.png similarity index 100% rename from icons/icon_left_brand.png rename to web/icons/icon_left_brand.png diff --git a/icons/icon_left_brand.svg b/web/icons/icon_left_brand.svg similarity index 100% rename from icons/icon_left_brand.svg rename to web/icons/icon_left_brand.svg diff --git a/icons/icon_top_brand.png b/web/icons/icon_top_brand.png similarity index 100% rename from icons/icon_top_brand.png rename to web/icons/icon_top_brand.png diff --git a/icons/icon_top_brand.svg b/web/icons/icon_top_brand.svg similarity index 100% rename from icons/icon_top_brand.svg rename to web/icons/icon_top_brand.svg diff --git a/web/rollup.config.js b/web/rollup.config.js index b11d99342..2386494d8 100644 --- a/web/rollup.config.js +++ b/web/rollup.config.js @@ -16,7 +16,7 @@ const resources = [ { src: "src/index.html", dest: "dist" }, { src: "src/authentik.css", dest: "dist" }, { src: "src/assets/*", dest: "dist/assets" }, - { src: "../icons/*", dest: "dist/assets/icons" }, + { src: "./icons/*", dest: "dist/assets/icons" }, ]; export default [