mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-01 13:10:44 -03:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { dev } from '$app/environment';
|
|
import { readable } from 'svelte/store';
|
|
|
|
// export const apiBase = readable(
|
|
// dev ? 'http://localhost:5000' : 'https://minix-back-dsuk.onrender.com'
|
|
// );
|
|
|
|
export const apiBase = readable(
|
|
dev
|
|
? 'http://localhost:5000'
|
|
: 'https://minix-back-3.salmonpebble-66858787.brazilsouth.azurecontainerapps.io'
|
|
);
|