Skip to content

Commit

Permalink
fix json ref
Browse files Browse the repository at this point in the history
  • Loading branch information
saeziae committed Jan 31, 2024
1 parent 502fd3d commit 2c900f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const footerlinks = [
var dictData;
async function fetchJSON() {
console.log("Loading dictionary...");
const response = await fetch("/char_phon_simp.json");
const response = await fetch("./char_phon_simp.json");
const json = await response.json();
dictData = json;
console.log("Loaded dictionary.");
Expand Down

0 comments on commit 2c900f0

Please sign in to comment.