···11+# easytodo.link
22+33+Local first, simple to do list. Made by [@zeu_dev](https://twitter.com/zeu_dev).
44+55+## Roadmap
66+77+### Free features
88+99+-[x] โจ Sync data with local storage
1010+-[x] ๐ Set color theme
1111+-[ ] ๐ Change background with image
1212+-[ ] ๐๏ธ Multiple lists with titles
1313+-[ ] โจ Add stopwatch (optional time tracking)
1414+-[ ] ๐ Publish lists as template (ready for copy)
1515+1616+### Paid (?) features
1717+1818+-[ ] ๐ Online account with cloud sync
1919+-[ ] ๐ธ Implement one-time fee
2020+-[ ] ๐ Publish lists as public (attached to user's data)
2121+-[ ] ๐ Publish lists as private (password protected)
2222+2323+## Made with
2424+2525+- Svelte: JS UI framework (using v5 beta)
2626+- SvelteKit: Meta framework
2727+- TailwindCSS: CSS-in-JS Solution
2828+- DaisyUI: TailwindCSS based component library
2929+3030+## Acknowledgements
3131+3232+- Color themes are taken from DaisyUI.
3333+- Icons were from StreamlineHQ's Flex Solid Free Set
···11+import adapter from '@sveltejs/adapter-auto';
22+import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
33+44+/** @type {import('@sveltejs/kit').Config} */
55+const config = {
66+ // Consult https://kit.svelte.dev/docs/integrations#preprocessors
77+ // for more information about preprocessors
88+ preprocess: vitePreprocess(),
99+1010+ kit: {
1111+ // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
1212+ // If your environment is not supported or you settled on a specific environment, switch out the adapter.
1313+ // See https://kit.svelte.dev/docs/adapters for more information about adapters.
1414+ adapter: adapter()
1515+ }
1616+};
1717+1818+export default config;