diff --git a/package.json b/package.json index 27377de..e901ef6 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,6 @@ "svelte-check": "^3.0.1", "svelte-dark-mode": "^2.1.0", "svelte-hcaptcha": "^0.1.1", - "svelte-preprocess": "^5.0.0", "svelte-seo": "^1.4.1", "svelte-vertical-timeline": "^0.0.2", "tslib": "^2.4.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9dd75e9..8177730 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,7 +22,6 @@ specifiers: svelte-check: ^3.0.1 svelte-dark-mode: ^2.1.0 svelte-hcaptcha: ^0.1.1 - svelte-preprocess: ^5.0.0 svelte-seo: ^1.4.1 svelte-vertical-timeline: ^0.0.2 tslib: ^2.4.1 @@ -54,7 +53,6 @@ devDependencies: svelte-check: 3.0.1_svelte@3.55.0 svelte-dark-mode: 2.1.0 svelte-hcaptcha: 0.1.1 - svelte-preprocess: 5.0.0_niwyv7xychq2ag6arq5eqxbomm svelte-seo: 1.4.1_typescript@4.9.4 svelte-vertical-timeline: 0.0.2 tslib: 2.4.1 diff --git a/src/lib/Footer.svelte b/src/lib/Footer.svelte index 3f5dce0..40be35d 100644 --- a/src/lib/Footer.svelte +++ b/src/lib/Footer.svelte @@ -2,7 +2,7 @@
- Made with
SvelteKit + Made with
SvelteKit Source code
diff --git a/src/lib/Nav.svelte b/src/lib/Nav.svelte index 21f537f..ed57a2e 100644 --- a/src/lib/Nav.svelte +++ b/src/lib/Nav.svelte @@ -137,11 +137,11 @@ } .icon > span { - @apply flex nav\:hidden; + @apply flex text-sm nav\:hidden; } .icon { - @apply flex flex-row items-center gap-2; + @apply flex flex-row items-center gap-2 text-base; } .hasJS { diff --git a/svelte.config.js b/svelte.config.js index 744c920..acdab2b 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,5 @@ import adapter from "@sveltejs/adapter-node"; -import preprocess from "svelte-preprocess"; +import { vitePreprocess } from "@sveltejs/kit/vite"; import { mdsvex } from "mdsvex"; /** @type {import('@sveltejs/kit').Config} */ @@ -9,7 +9,7 @@ const config = { extensions: [".svelte", ".md"], preprocess: [ - preprocess(), + vitePreprocess(), mdsvex({ extensions: [".md"] })