Skip to content

Commit

Permalink
feat: Use assets folder again for cleanliness
Browse files Browse the repository at this point in the history
  • Loading branch information
purplebugs committed Oct 29, 2024
1 parent 52aaef1 commit 1d9ec5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Copy / paste the lines below directly inside the <head></head> tag of front page of app
-->
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link href="/fonts_google/poppins/fonts.css" rel="stylesheet" />
<link href="/assets/fonts_google/poppins/fonts.css" rel="stylesheet" />
<!--
// USAGE Step 1 - END
-->
Expand Down
4 changes: 2 additions & 2 deletions src/alpaca-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default class AlpacaMap extends LitElement {
this.centerLat = 60.472;
this.centerLng = 8.4689;
this.dataSource = "http://localhost:3000/api/companies"; // TODO set default depending on environment
this.assetSource = "https://www.alpaca.life";
this.assetSource = "https://www.alpaca.life/assets";

this.farms = [];
this.cluster = null;
Expand Down Expand Up @@ -450,7 +450,7 @@ export default class AlpacaMap extends LitElement {
target="_blank"
data-testid="link-logo"
><img
src="${this.assetSource}/alpaca.life.logo.png"
src="${this.assetSource}/images/alpaca.life.logo.png"
width="100px"
height="100px"
alt="Alpaca Life logo"
Expand Down

0 comments on commit 1d9ec5d

Please sign in to comment.