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 { dirname, resolve } from 'node:path'
2import { fileURLToPath } from 'node:url'
3import { defineConfig } from 'vite'
4
5const __dirname = dirname(fileURLToPath(import.meta.url))
6
7export default defineConfig({
8 build: {
9 lib: {
10 entry: resolve(__dirname, 'lib/main.js'),
11 name: '@pds-moover/moover',
12 // the proper extensions will be added
13 fileName: 'pds-moover',
14 },
15 rollupOptions: {
16 // // make sure to externalize deps that shouldn't be bundled
17 // // into your library
18 // external: ['vue'],
19 // output: {
20 // // Provide global variables to use in the UMD build
21 // // for externalized deps
22 // globals: {
23 // vue: 'Vue',
24 // },
25 // },
26 },
27 },
28})