@ -4,7 +4,7 @@ WORKDIR /app
RUN yarn install
COPY . .
EXPOSE 8080
CMD ["yarn", "serve"]
EXPOSE 2020
@ -1,5 +1,5 @@
export const API_URL =
process.env.NODE_ENV === "production"
? "https://tobedefined.io/api"
? "https://secret-ocean-88862.herokuapp.com/api"
: "http://localhost:2020/api";
export default API_URL;