mirror your GitHub repos to tangled.org automatically
1

Configure Feed

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

fix: update public.url config

+6 -3
+5 -2
nuxt.config.ts
··· 1 1 // https://nuxt.com/docs/api/configuration/nuxt-config 2 2 export default defineNuxtConfig({ 3 + devServer: { 4 + host: '127.0.0.1', 5 + }, 3 6 modules: [ 4 7 '@nuxtjs/html-validator', 5 8 '@nuxt/scripts', ··· 19 22 encryptionKey: '', 20 23 atprotoPrivateJwk: '', 21 24 public: { 22 - publicURL: '', 23 - }, 25 + url: '', 26 + } 24 27 }, 25 28 typescript: { 26 29 nodeTsConfig: {
+1 -1
server/utils/atproto-oauth.ts
··· 28 28 if (cachedClient) return cachedClient 29 29 30 30 const config = useRuntimeConfig() 31 - const publicURL = config.public.publicURL?.replace(/\/$/, '') 31 + const publicURL = config.public.url?.replace(/\/$/, '') 32 32 if (!publicURL) { 33 33 throw new Error('NUXT_PUBLIC_URL is not set') 34 34 }