We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de80bd7 commit 8f3dba1Copy full SHA for 8f3dba1
src/components/recommender-view/recommender-view.ts
@@ -283,7 +283,9 @@ export class RecRecRecommenderView extends LitElement {
283
// Custom Methods ||
284
//==========================================================================||
285
async initData() {
286
- const response = await fetch('/data/award-recipients.json');
+ const response = await fetch(
287
+ `${import.meta.env.BASE_URL}data/award-recipients.json`
288
+ );
289
const awardData = (await response.json()) as Record<
290
string,
291
AcademicAward[]
0 commit comments