Compare commits
2 commits
aeaec1c3d2
...
e77e710983
Author | SHA1 | Date | |
---|---|---|---|
e77e710983 | |||
7456e9825d |
3 changed files with 2 additions and 8 deletions
|
@ -2,11 +2,11 @@
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { fade } from 'svelte/transition';
|
import { fade } from 'svelte/transition';
|
||||||
|
|
||||||
let visible = false;
|
let visible = true;
|
||||||
let time = 0;
|
let time = 0;
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
time = 0;
|
time = 1000;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
visible = false;
|
visible = false;
|
||||||
}, time);
|
}, time);
|
||||||
|
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
@ -17,12 +17,6 @@ const config = {
|
||||||
precompress: false,
|
precompress: false,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
server: {
|
|
||||||
fs: {
|
|
||||||
// Allow serving files from one level up to the project root
|
|
||||||
allow: ['..'],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default config;
|
export default config;
|
||||||
|
|
Loading…
Reference in a new issue