Skip to content

Commit

Permalink
fix: set correct, relative, src paths for assets
Browse files Browse the repository at this point in the history
  • Loading branch information
tino-tg committed Jun 9, 2021
1 parent c5408cf commit f547e74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class AppComponent implements OnInit {
envName = env.envName;
version = env.versions.app;
year = new Date().getFullYear();
logo = '/assets/logo.png';
logo = 'assets/logo.png';
languages = ['en', 'de', 'sk', 'fr', 'es', 'pt-br', 'zh-cn', 'he'];
navigation = [
{ link: 'about', label: 'anms.menu.about' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ROUTE_ANIMATIONS_ELEMENTS } from '../../../core/core.module';
})
export class AboutComponent implements OnInit {
routeAnimationsElements = ROUTE_ANIMATIONS_ELEMENTS;
releaseButler = '/assets/release-butler.png';
releaseButler = 'assets/release-butler.png';

constructor() {}

Expand Down

0 comments on commit f547e74

Please sign in to comment.