From d000891f7846399990ddf0a9dc3008cd49813f8c Mon Sep 17 00:00:00 2001 From: Roshanjossey Date: Sun, 12 Oct 2025 17:43:39 +0200 Subject: [PATCH] fix relative url of assets --- .github/pull_request_template.md | 4 +--- svelte.config.js | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 55cb1ef..b9cf0f5 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,4 @@ -## Pull Request - -Thank you for your contribution! + ### Description diff --git a/svelte.config.js b/svelte.config.js index f86680d..97796b6 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -19,7 +19,7 @@ const config = { strict: true }), paths: { - base: process.env.NODE_ENV === 'production' ? '/devicons.dev' : '' + base: process.env.NODE_ENV === 'production' ? '/devicon.dev' : '' } } };