Skip to content

Commit f459a3c

Browse files
Point variables to dev environment
1 parent 0d6aad9 commit f459a3c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import Detail from "./pages/Details";
1616
import PageCode from "./pages/PageCode";
1717
import Error from "./pages/Error";
1818

19-
//export const pathURL = process.env.REACT_APP_DEV_SERVER_URL;
20-
export const pathURL = process.env.REACT_APP_PPR_SERVER_URL;
19+
export const pathURL = process.env.REACT_APP_DEV_SERVER_URL;
20+
//export const pathURL = process.env.REACT_APP_PPR_SERVER_URL;
2121
//export const pathURL = process.env.REACT_APP_PRD_SERVER_URL;
2222

2323
export default function App() {

src/config/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const baseURLPPR = process.env.REACT_APP_AMP_PPR_SERVER;
77
const baseURLPRD = process.env.REACT_APP_AMP_PRD_SERVER;
88

99
export const api = axios.create({
10-
baseURL: baseURLPPR,
10+
baseURL: baseURLDEV,
1111
});
1212

1313
export const getEvalData = async (content, currentURL) => {

0 commit comments

Comments
 (0)