[READ-ONLY] Mirror of https://github.com/flo-bit/bluesky-website-generator. bluesky-website-generator.vercel.app
0

Configure Feed

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

fix

+5 -2
+1 -1
src/lib/server/client.ts
··· 4 4 import { dev } from '$app/environment'; 5 5 6 6 const publicUrl = 'https://bluesky-website-generator.vercel.app'; 7 - const port = 5173; 7 + const port = 5420; 8 8 const url = dev ? `http://[::1]:${port}` : publicUrl; 9 9 10 10 const encodeCallbackUrl = encodeURIComponent(`${url}/oauth/callback`);
+4 -1
vite.config.ts
··· 3 3 import { defineConfig } from 'vite'; 4 4 5 5 export default defineConfig({ 6 - plugins: [tailwindcss(), sveltekit()] 6 + plugins: [tailwindcss(), sveltekit()], 7 + server: { 8 + port: 5420 9 + } 7 10 });