summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/components/Giscus.svelte2
-rw-r--r--src/posts/first-post.svx5
-rw-r--r--svelte.config.js2
3 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/components/Giscus.svelte b/src/lib/components/Giscus.svelte
index 96be4a4..8a924ef 100644
--- a/src/lib/components/Giscus.svelte
+++ b/src/lib/components/Giscus.svelte
@@ -14,7 +14,7 @@
script.setAttribute("data-strict", "0");
script.setAttribute("data-reactions-enabled", "1");
script.setAttribute("data-emit-metadata", "0");
- script.setAttribute("data-input-position", "bottom");
+ script.setAttribute("data-input-position", "top");
script.setAttribute("data-theme", "preferred_color_scheme");
script.setAttribute("data-lang", "en");
script.setAttribute("data-loading", "lazy");
diff --git a/src/posts/first-post.svx b/src/posts/first-post.svx
index 5526b24..ff4f49b 100644
--- a/src/posts/first-post.svx
+++ b/src/posts/first-post.svx
@@ -12,5 +12,8 @@ Hello, and welcome, to my weird lil mindscape where I thought it would be a *gre
I am not sure why the idea that *I need a blog* stuck to my brain like a tumor for long enough that I pulled the trigger and got a VPS for it, but ig im kinda glad.
-Hope you like what you see here, and hope I get enough time and energy to pour my thoughts into words.
+Hope you'll like what you see here, if not, idk why you're reading ig.
+And I hope I'll have enough time and energy to pour my thoughts into words.
+
+Stay tuned.
diff --git a/svelte.config.js b/svelte.config.js
index d7a9a54..5194591 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -4,7 +4,7 @@ import mdsvexConfig from './mdsvex.config.js';
/** @type {import('@sveltejs/kit').Config} */
const config = {
- kit: { adapter: adapter() },
+ kit: { adapter: adapter(), paths: { relative: false } },
preprocess: [mdsvex(mdsvexConfig)],
extensions: ['.svelte', '.svx']
};