appview-less bluesky client
24
fork

Configure Feed

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

build: fix

dusk 4b05e9fc 607db7f8

+5 -3
+2 -2
nix/default.nix
··· 5 5 nodejs, 6 6 makeBinaryWrapper, 7 7 nucleus-modules, 8 - PUBLIC_BASE_URL ? "http://localhost:5173", 8 + PUBLIC_DOMAIN ? "http://localhost:5173", 9 9 }: 10 10 stdenv.mkDerivation { 11 11 name = "nucleus"; ··· 26 26 nativeBuildInputs = [makeBinaryWrapper]; 27 27 buildInputs = [deno]; 28 28 29 - inherit PUBLIC_BASE_URL; 29 + inherit PUBLIC_DOMAIN; 30 30 31 31 dontCheck = true; 32 32
+1 -1
nix/modules.nix
··· 14 14 ]; 15 15 }; 16 16 17 - outputHash = "sha256-dAsYIY+zAcPl7YPJNiQ3/frTt/uklnYp5JHIA1cao08="; 17 + outputHash = "sha256-glfh3vNy9U0w7CjgFADAwb0qg/tzC0H97EY7zSjTgaQ="; 18 18 outputHashAlgo = "sha256"; 19 19 outputHashMode = "recursive"; 20 20
+2
src/routes/oauth-client-metadata.json/+server.ts
··· 2 2 import { domain } from '$lib/domain'; 3 3 import { json } from '@sveltejs/kit'; 4 4 5 + export const prerender = true; 6 + 5 7 export const GET = () => { 6 8 return json({ 7 9 ...oauthMetadata,