alpha
Login
or
Join now
danielroe.dev
/
synchub.to
Star
1
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
mirror your GitHub repos to tangled.org automatically
Star
1
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: update public.url config
author
Daniel Roe
date
1 month ago
(May 4, 2026, 2:12 PM +0200)
commit
45781cac
45781cac4f42386db47cc6c59080d802245fec85
parent
fbe3ca5e
fbe3ca5e8b5375d9093addef6453a7417ec93b97
+6
-3
2 changed files
Expand all
Collapse all
Unified
Split
nuxt.config.ts
server
utils
atproto-oauth.ts
+5
-2
nuxt.config.ts
Reviewed
···
1
1
// https://nuxt.com/docs/api/configuration/nuxt-config
2
2
export default defineNuxtConfig({
3
3
+
devServer: {
4
4
+
host: '127.0.0.1',
5
5
+
},
3
6
modules: [
4
7
'@nuxtjs/html-validator',
5
8
'@nuxt/scripts',
···
19
22
encryptionKey: '',
20
23
atprotoPrivateJwk: '',
21
24
public: {
22
22
-
publicURL: '',
23
23
-
},
25
25
+
url: '',
26
26
+
}
24
27
},
25
28
typescript: {
26
29
nodeTsConfig: {
+1
-1
server/utils/atproto-oauth.ts
Reviewed
···
28
28
if (cachedClient) return cachedClient
29
29
30
30
const config = useRuntimeConfig()
31
31
-
const publicURL = config.public.publicURL?.replace(/\/$/, '')
31
31
+
const publicURL = config.public.url?.replace(/\/$/, '')
32
32
if (!publicURL) {
33
33
throw new Error('NUXT_PUBLIC_URL is not set')
34
34
}