env upload

This commit is contained in:
Peter Hoppe
2022-12-30 13:00:38 +01:00
parent 77c125a0c5
commit cc017bd508
12 changed files with 4 additions and 3 deletions

View File

@ -77,8 +77,8 @@ export const UserCtx = createContext<UserCtxT | null>(null);
export const Axios = axios.create({
// baseURL: 'http://localhost/dog/php-dog/',
baseURL: 'https://hope-fly.de/dog/php-dog/',
// baseURL: process.env.REACT_APP_PHP_ROOT,
// baseURL: 'https://hope-fly.de/dog/php-dog/',
baseURL: process.env.REACT_APP_PHP_ROOT,
});
export const UserCtxProvider = ({children}:TUserContextProviderProps) => {