Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
pdsmoover.com
pds
atproto
migrations
moo
cow
1import adapter from '@sveltejs/adapter-node';
2import {vitePreprocess} from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 // Consult https://svelte.dev/docs/kit/integrations
7 // for more information about preprocessors
8 preprocess: vitePreprocess(),
9
10 kit: {
11 // https://svelte.dev/docs/kit/adapter-node
12 adapter: adapter()
13 }
14};
15
16export default config;