mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-18 07:26:03 +01:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
|
import axios from 'axios'
|
||
|
|
|
||
|
|
const { RAILWAY_STATIC_URL } = process.env
|
||
|
|
|
||
|
|
export const api = axios.create({
|
||
|
|
baseURL: `${RAILWAY_STATIC_URL}/api` || 'http://localhost:3000/api'
|
||
|
|
})
|