fixed invalid .env

This commit is contained in:
slawk0
2024-12-23 00:08:52 +01:00
parent fb3501e21f
commit fd1595c3c3
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ import { AuthContext } from './utils/AuthProvider.tsx';
import ProtectedRoutes from './utils/ProtectedRoutes.tsx'; import ProtectedRoutes from './utils/ProtectedRoutes.tsx';
import axios from 'axios'; import axios from 'axios';
export const axiosClient = axios.create({ export const axiosClient = axios.create({
baseURL: import.meta.env.BASE_URL, baseURL: import.meta.env.VITE_BASE_URL,
}); });
const router = createBrowserRouter([ const router = createBrowserRouter([
{ {

View File

@@ -3,7 +3,7 @@ CLIENT_PORT=5000
SERVER_PORT=3000 #DO NOT CHANGE SERVER_PORT=3000 #DO NOT CHANGE
JWT_SECRET=fdsfsdfds@ JWT_SECRET=fdsfsdfds@
ORIGIN=http://localhost:5173 ORIGIN=http://localhost:5173#CLIENT URL
PG_HOST=192.168.0.47 PG_HOST=192.168.0.47
PG_USER=postgres PG_USER=postgres