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 { fade } from 'svelte/transition';
|
||||
|
||||
let visible = false;
|
||||
let visible = true;
|
||||
let time = 0;
|
||||
|
||||
onMount(() => {
|
||||
time = 0;
|
||||
time = 1000;
|
||||
setTimeout(() => {
|
||||
visible = false;
|
||||
}, time);
|
||||
|
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
@ -17,12 +17,6 @@ const config = {
|
|||
precompress: false,
|
||||
})
|
||||
},
|
||||
server: {
|
||||
fs: {
|
||||
// Allow serving files from one level up to the project root
|
||||
allow: ['..'],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
|
Loading…
Reference in a new issue