From c5b33fd752d026f25521d7e2e64460505cc89a56 Mon Sep 17 00:00:00 2001 From: Moritz Ruth Date: Thu, 13 Feb 2025 22:59:44 +0100 Subject: [PATCH] Cleanup old files and fix configs --- public/.well-known/matrix/client | 5 ----- public/.well-known/matrix/server | 3 --- public/jamrss-privacy-statement.txt | 5 ----- vite.config.ts | 6 +++++- 4 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 public/.well-known/matrix/client delete mode 100644 public/.well-known/matrix/server delete mode 100644 public/jamrss-privacy-statement.txt diff --git a/public/.well-known/matrix/client b/public/.well-known/matrix/client deleted file mode 100644 index 73d1f0c..0000000 --- a/public/.well-known/matrix/client +++ /dev/null @@ -1,5 +0,0 @@ -{ - "m.homeserver": { - "base_url": "https://matrix.moritzruth.de" - } -} diff --git a/public/.well-known/matrix/server b/public/.well-known/matrix/server deleted file mode 100644 index 0f9a0d7..0000000 --- a/public/.well-known/matrix/server +++ /dev/null @@ -1,3 +0,0 @@ -{ - "m.server": "matrix.moritzruth.de:443" -} diff --git a/public/jamrss-privacy-statement.txt b/public/jamrss-privacy-statement.txt deleted file mode 100644 index df009d7..0000000 --- a/public/jamrss-privacy-statement.txt +++ /dev/null @@ -1,5 +0,0 @@ -The app (JamRSS) does not collect any user data by itself. For feed sources, please consider their own respective policies. - ---- - -Die App (JamRSS) erhebt selbst keine Daten. Jedoch müssen die Datenschutzbestimmungen der hinzugefügten Feeds berücksichtigt werden. diff --git a/vite.config.ts b/vite.config.ts index cd73a19..2f255bc 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,5 +10,9 @@ export default defineConfig({ pagesPlugin(), windicssPlugin(), iconsPlugin() - ] + ], + ssgOptions: { + formatting: "minify", + dirStyle: "nested" + } })