alpha
Login
or
Join now
flo-bit.dev
/
bluesky-website-generator
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/bluesky-website-generator.
bluesky-website-generator.vercel.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
Florian
date
1 year ago
(May 4, 2025, 11:58 PM +0200)
commit
7fc02a62
7fc02a62e1a5c38e86cdeca0823ca3727ca15a58
parent
5152bacc
5152baccdc9c87afad65549b5016c24f3dcb33cc
+5
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
lib
server
client.ts
vite.config.ts
+1
-1
src/lib/server/client.ts
View file
Reviewed
···
4
4
import { dev } from '$app/environment';
5
5
6
6
const publicUrl = 'https://bluesky-website-generator.vercel.app';
7
7
-
const port = 5173;
7
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
View file
Reviewed
···
3
3
import { defineConfig } from 'vite';
4
4
5
5
export default defineConfig({
6
6
-
plugins: [tailwindcss(), sveltekit()]
6
6
+
plugins: [tailwindcss(), sveltekit()],
7
7
+
server: {
8
8
+
port: 5420
9
9
+
}
7
10
});