import { browser } from '$app/environment'; import { writable } from 'svelte/store'; const cacheMangaMinutes = writable( browser ? localStorage.getItem('cacheMangaMinutes') ?? '60' : '60' ); cacheMangaMinutes.subscribe((value) => { if (browser) { localStorage.setItem('cacheMangaMinutes', value); } }); export default cacheMangaMinutes;