Skip to content

Commit

Permalink
prefer localhost over 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ComfortablyCoding committed Jul 18, 2024
1 parent e851b6a commit 9f6cb9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default defineNuxtConfig({
// Directus Configuration
directus: {
rest: {
baseUrl: process.env.DIRECTUS_URL || 'http://0.0.0.0:8055',
baseUrl: process.env.DIRECTUS_URL || 'http://localhost:8055',
nuxtBaseUrl: process.env.NUXT_PUBLIC_SITE_URL || 'http://localhost:3000',
},
auth: {
Expand Down

0 comments on commit 9f6cb9b

Please sign in to comment.