We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 482e8ba commit 8ce69ddCopy full SHA for 8ce69dd
server/server.js
@@ -39,7 +39,7 @@ app.use(cookieParser());
39
// statically serve everything in build folder
40
app.use('/', express.static(path.resolve(__dirname, '../build')));
41
app.use(
42
- '/src/public/images',
+ '/images',
43
express.static(path.resolve(__dirname, '..src/public/images'))
44
);
45
src/components/login/SignIn.tsx
@@ -145,7 +145,7 @@ const SignIn: React.FC<LoginInt & RouteComponentProps> = props => {
145
</Button>
146
147
<a href="https://localhost:8080/github">
148
- <img src="../src/public/images/githublogin.png" />
+ <img src="/images/githublogin.png" />
149
</a>
150
<br></br>
151
<Grid container>
0 commit comments