BlueSky & more on desktop lazurite.stormlightlabs.org/
tauri rust typescript bluesky appview atproto solid
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: fs wandering

+3 -3
+2 -2
tsconfig.json
··· 18 18 "noUnusedParameters": true, 19 19 "noFallthroughCasesInSwitch": true, 20 20 "types": ["vite/client", "@testing-library/jest-dom"], 21 - "baseUrl": ".", 22 - "paths": { "$/*": ["src/*"] } 21 + "baseUrl": "src", 22 + "paths": { "$/*": ["./*"] } 23 23 }, 24 24 "include": ["src"], 25 25 "references": [{ "path": "./tsconfig.node.json" }]
+1 -1
vite.config.ts
··· 23 23 strictPort: true, 24 24 host: host || false, 25 25 hmr: host ? { protocol: "ws", host, port: 1421 } : undefined, 26 - watch: { ignored: ["**/src-tauri/**"] }, 26 + watch: { ignored: "./src-tauri/**" }, 27 27 }, 28 28 resolve: { alias: { "$": fileURLToPath(new URL("src", import.meta.url)) } }, 29 29 test,