File tree 4 files changed +24
-3
lines changed
4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change
1
+ REACT_APP_APP_NAME = CloneReact
2
+ REACT_APP_ENV = example
3
+ REACT_APP_APP_URL = http://localhost:3000
4
+
5
+ REACT_APP_API_KEY = test-key
6
+ REACT_APP_BACKEND_URL = http://localhost:8080
7
+
8
+ REACT_APP_LOG_LEVEL =
9
+
10
+ REACT_APP_LOGO_LINK = ' https://point.md/static/svg/new-point-logo.svg'
11
+
12
+ REACT_APP_DB_CONNECTION =
13
+ REACT_APP_DB_HOST =
14
+ REACT_APP_DB_PORT =
15
+ REACT_APP_DB_DATABASE =
16
+ REACT_APP_DB_USERNAME =
17
+ REACT_APP_DB_PASSWORD =
Original file line number Diff line number Diff line change @@ -2,16 +2,20 @@ import React from 'react';
2
2
import { Outlet , Link } from 'react-router-dom' ;
3
3
4
4
import { AppStyled , MainLogoStyled } from './styled' ;
5
+ import { LOGO_URL } from '@constants/index' ;
5
6
6
7
7
8
export const AppLayout : React . FC < {
8
9
children : React . ReactElement | null ;
9
10
} > = ( { children } ) : JSX . Element => {
11
+
12
+ const logoLink = process . env . REACT_APP_LOGO_LINK || LOGO_URL ;
13
+
10
14
return (
11
15
< >
12
16
< AppStyled >
13
17
< Link to = "/" >
14
- < MainLogoStyled src = 'https://point.md/static/svg/new-point-logo.svg' alt = 'Point logo' />
18
+ < MainLogoStyled src = { logoLink } alt = 'Point logo' />
15
19
</ Link >
16
20
< Outlet />
17
21
{ children }
Original file line number Diff line number Diff line change 1
1
export const NEWS_IMAGE_URL = `https://i.simpalsmedia.com/point.md/news/370x194/` ;
2
2
export const NEWS_BIG_IMAGE_URL = `https://i.simpalsmedia.com/point.md/news/900x900/` ;
3
-
3
+ export const LOGO_URL = `https://point.md/static/svg/new-point-logo.svg` ;
Original file line number Diff line number Diff line change 1
- export { NEWS_IMAGE_URL , NEWS_BIG_IMAGE_URL } from './constants' ;
1
+ export { NEWS_IMAGE_URL , NEWS_BIG_IMAGE_URL , LOGO_URL } from './constants' ;
You can’t perform that action at this time.
0 commit comments