Initial commit

This commit is contained in:
Fabio 2025-03-25 14:06:17 +01:00
parent 5537e8ede3
commit 91ad067a92
3 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<svelte:head>
<link rel="stylesheet" href="node_modules/simple-icons-font/font/simple-icons.css">
<link rel="stylesheet" href="../../node_modules/simple-icons-font/font/simple-icons.css">
</svelte:head>
<script>
import BlurFade from "./BlurFade.svelte";

View File

@ -9,6 +9,7 @@ const config = {
fallback: 'fallback.html', // Specify the fallback page
strict: false // Allow dynamic routes
}),
}
};

View File

@ -1,8 +1,19 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { copy } from 'vite-plugin-copy';
export default defineConfig({
plugins: [sveltekit()],
plugins: [
sveltekit(),
copy({
targets: [
{
src: 'node_modules/simple-icons-font/font/simple-icons.css',
dest: 'static/_app' // Copy to static/_app folder
}
]
})
],
root: '.',
build: {
outDir: 'dist',