Initial commit
This commit is contained in:
parent
5537e8ede3
commit
91ad067a92
@ -1,5 +1,5 @@
|
|||||||
<svelte:head>
|
<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>
|
</svelte:head>
|
||||||
<script>
|
<script>
|
||||||
import BlurFade from "./BlurFade.svelte";
|
import BlurFade from "./BlurFade.svelte";
|
||||||
|
@ -9,6 +9,7 @@ const config = {
|
|||||||
fallback: 'fallback.html', // Specify the fallback page
|
fallback: 'fallback.html', // Specify the fallback page
|
||||||
strict: false // Allow dynamic routes
|
strict: false // Allow dynamic routes
|
||||||
}),
|
}),
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,8 +1,19 @@
|
|||||||
import { sveltekit } from '@sveltejs/kit/vite';
|
import { sveltekit } from '@sveltejs/kit/vite';
|
||||||
import { defineConfig } from 'vite';
|
import { defineConfig } from 'vite';
|
||||||
|
import { copy } from 'vite-plugin-copy';
|
||||||
|
|
||||||
export default defineConfig({
|
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: '.',
|
root: '.',
|
||||||
build: {
|
build: {
|
||||||
outDir: 'dist',
|
outDir: 'dist',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user