File tree 4 files changed +8
-8
lines changed
routes/components/LogoThemed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -14,26 +14,26 @@ const favIcons = [
14
14
{
15
15
rel : "icon" ,
16
16
type : "image/x-icon" ,
17
- href : require ( "./../images /favicons/favicon.ico" ) ,
17
+ href : require ( "Images /favicons/favicon.ico" ) ,
18
18
} ,
19
19
20
20
{
21
21
rel : "apple-touch-icon" ,
22
22
sizes : "180x180" ,
23
- href : require ( "./../images /favicons/apple-touch-icon.png" ) ,
23
+ href : require ( "Images /favicons/apple-touch-icon.png" ) ,
24
24
} ,
25
25
26
26
{
27
27
rel : "icon" ,
28
28
type : "image/png" ,
29
29
sizes : "32x32" ,
30
- href : require ( "./../images /favicons/favicon-32x32.png" ) ,
30
+ href : require ( "Images /favicons/favicon-32x32.png" ) ,
31
31
} ,
32
32
{
33
33
rel : "icon" ,
34
34
type : "image/png" ,
35
35
sizes : "16x16" ,
36
- href : require ( "./../images /favicons/favicon-16x16.png" ) ,
36
+ href : require ( "Images /favicons/favicon-16x16.png" ) ,
37
37
} ,
38
38
]
39
39
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import classNames from 'classnames'
5
5
import { ThemeConsumer } from 'Components/Theme'
6
6
7
7
const logos = {
8
- 'default' : require ( './../../../images /logos/logo192.png' ) ,
9
- 'primary' : require ( './../../../images /logos/logo192.png' )
8
+ 'default' : require ( 'Images /logos/logo192.png' ) ,
9
+ 'primary' : require ( 'Images /logos/logo192.png' )
10
10
}
11
11
12
12
const getLogoUrl = ( ) => {
Original file line number Diff line number Diff line change 1
1
import React , { useEffect , useState } from 'react'
2
2
import { checkUserApi , checkUserLicenceKey } from '../../redux/actions'
3
- import logo from './../../images /logos/logo192.png'
3
+ import logo from 'Images /logos/logo192.png'
4
4
import { useDispatch , useSelector } from 'react-redux'
5
5
import './style.css'
6
6
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function ViewRedirect({
42
42
width : '100%' ,
43
43
height : '100%' ,
44
44
} }
45
- src = { require ( '../images /gif/npe-redirecting.gif' ) }
45
+ src = { require ( 'Images /gif/npe-redirecting.gif' ) }
46
46
alt = "loading..."
47
47
/>
48
48
{ ! backendIsUp && (
You can’t perform that action at this time.
0 commit comments