diff options
| author | pml68 <contact@pml68.dev> | 2024-12-11 22:36:22 +0100 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2024-12-11 22:36:22 +0100 |
| commit | b241863c3b6a10d886d6b84514c49e0196ae5f4d (patch) | |
| tree | bda0081ec58b466efa8a36cd3a3515455ce84b80 | |
| parent | fix: re-add margin-right for social icons (diff) | |
| download | pml68.dev-b241863c3b6a10d886d6b84514c49e0196ae5f4d.tar.gz | |
feat: update domain
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/lib/socials.json | 2 | ||||
| -rw-r--r-- | src/routes/+layout.svelte | 8 | ||||
| -rw-r--r-- | svelte.config.js | 8 |
4 files changed, 10 insertions, 10 deletions
@@ -3,7 +3,7 @@ [](https://www.gnu.org/licenses/gpl-3.0) [](https://github.com/pml68/website/releases/latest) [](https://github.com/pml68/website/actions) -[](https://pml68.me) +[](https://pml68.dev) # Running locally diff --git a/src/lib/socials.json b/src/lib/socials.json index 16ebb5f..ea75d91 100644 --- a/src/lib/socials.json +++ b/src/lib/socials.json @@ -17,7 +17,7 @@ "iconIndex": 3 }, { - "link": "mailto:contact@pml68.me", + "link": "mailto:contact@pml68.dev", "iconIndex": 4 } ] diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index f45c602..856ee27 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,10 +1,10 @@ <script lang="ts"> - import '../app.scss' + import "../app.scss"; - import WaveLeft from '$lib/assets/wave1.svg?url' - import WaveRight from '$lib/assets/wave2.svg?url' + import WaveLeft from "$lib/assets/wave1.svg?url"; + import WaveRight from "$lib/assets/wave2.svg?url"; interface Props { - children?: import('svelte').Snippet; + children?: import("svelte").Snippet; } let { children }: Props = $props(); diff --git a/svelte.config.js b/svelte.config.js index 66a5f92..bc825ab 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -5,9 +5,9 @@ const dev = process.argv.includes('dev') /** @type {import('@sveltejs/kit').Config} */ const config = { - preprocess: vitePreprocess(), - kit: { - adapter: adapter({ + preprocess: vitePreprocess(), + kit: { + adapter: adapter({ pages: 'build', assets: 'build', fallback: undefined, @@ -17,7 +17,7 @@ const config = { paths: { base: dev ? '' : process.env.BASE_PATH } - } + } }; export default config |
