diff options
Diffstat (limited to '')
| -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 |
