Commit 5d48232e authored by Marek Trtik's avatar Marek Trtik
Browse files

DatasetService: Use URL to Heroku.

parent 39cb8ccf
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
import axios from 'axios'

const URL = 'http://localhost'
const PORT = 3000
const BASE_URL = URL + ':' + PORT
const URL = 'https://antarstick.herokuapp.com'
const BASE_URL = URL

const apiClient = axios.create({
  baseURL: BASE_URL,