Skip to content

Commit

Permalink
ci: deployment config
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuhji committed Mar 22, 2024
1 parent 7bf67ae commit bb17160
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/api/api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ the mock API */
public doMockCall(): Promise<SendDict2ResponseObj> {
const scenario = this.NEAR_FUTURE_CALL ? 'near' : 'far';
this.NEAR_FUTURE_CALL = !this.NEAR_FUTURE_CALL;
return fetch(`../../assets/data/demo-senario-${scenario}.json`).then((response) =>
return fetch(`assets/data/demo-senario-${scenario}.json`).then((response) =>
response.json().then((val) => {
const data = this.modifyMockResponseValues(new SendDict2ResponseObj(val), scenario);
return data;
Expand Down
8 changes: 4 additions & 4 deletions src/scss/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@

@font-face {
font-family: Aspekta;
src: url('/assets/fonts/Aspekta-400.woff2') format('woff2');
src: url('assets/fonts/Aspekta-400.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Aspekta SemiBold';
src: url('/assets/fonts/Aspekta-500.woff2') format('woff2');
src: url('assets/fonts/Aspekta-500.woff2') format('woff2');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: 'Aspekta Bold';
src: url('/assets/fonts/Aspekta-700.woff2') format('woff2');
src: url('assets/fonts/Aspekta-700.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: 'Aspekta Light';
src: url('/assets/fonts/Aspekta-300.woff2') format('woff2');
src: url('assets/fonts/Aspekta-300.woff2') format('woff2');
font-weight: 300;
font-style: normal;
}
Expand Down

0 comments on commit bb17160

Please sign in to comment.