Skip to content

Commit

Permalink
docs: fix relative path for css images
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Apr 7, 2020
1 parent 337824a commit b9b3869
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/ngrx.io/src/app/search/search-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
var SEARCH_TERMS_URL = '/generated/docs/app/search-data.json';

// NOTE: This needs to be kept in sync with `ngsw-config.json`.
importScripts('/assets/js/lunr.min.js');
importScripts('assets/js/lunr.min.js');

var index;
var pages /* : SearchInfo */ = {};
Expand Down
4 changes: 2 additions & 2 deletions projects/ngrx.io/src/styles/1-layouts/_homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ aio-shell.page-home {
}

header {
background-image: url('/assets/images/header.svg');
background-image: url('assets/images/header.svg');
background-size: cover;
background-position: center center;
height: 80vh;
Expand Down Expand Up @@ -163,7 +163,7 @@ aio-shell.page-home {
}

.final-ngrx-callout {
background-image: url('/assets/images/header.svg');
background-image: url('assets/images/header.svg');
background-size: cover;
background-position: bottom center;
height: 180px;
Expand Down

0 comments on commit b9b3869

Please sign in to comment.