Compare commits

..

No commits in common. "e77e710983149e840865112d1ed0305df757a99a" and "aeaec1c3d2e8a0ea936eae5a064b95be9c730c8d" have entirely different histories.

3 changed files with 8 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

View file

@ -2,11 +2,11 @@
import { onMount } from 'svelte';
import { fade } from 'svelte/transition';
let visible = true;
let visible = false;
let time = 0;
onMount(() => {
time = 1000;
time = 0;
setTimeout(() => {
visible = false;
}, time);

View file

@ -17,6 +17,12 @@ const config = {
precompress: false,
})
},
server: {
fs: {
// Allow serving files from one level up to the project root
allow: ['..'],
},
},
};
export default config;