Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mkriegeskorte committed Jun 27, 2024
1 parent 1d867cc commit 79f082e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ export const PRO_DEMO_URL =
process.env.NEXT_PUBLIC_DEMO_URL_PRO ?? 'https://embed-pro.tiptap.dev/preview'

export const BASE_PATH = process.env.BASE_PATH || process.env.NEXT_PUBLIC_BASE_PATH || ''
export const DOMAIN =
process.env.NEXT_PUBLIC_DOMAIN || 'http://localhost:3000'
export const DOMAIN = process.env.NEXT_PUBLIC_DOMAIN || 'http://localhost:3000'
export const FULL_DOMAIN = `${DOMAIN}${BASE_PATH}`

export const GTM_ID = process.env.NEXT_PUBLIC_GTM_ID || null

0 comments on commit 79f082e

Please sign in to comment.