I have created react application using npx create-react-app. I have json files in public/strings folder.I need to access this json file from the reducer in src.I have code as below in src/reducers/lang_reducer.js
let resources =require("/strings/strings_" + language + ".json");
let englishStrings=require("/strings/strings_en.json");
It is throwing following error: ./src/reducers/languages_reducer.js Module not found: Can't resolve '/strings' in 'E:Code\src\reducers'
Is there any other way by which i can access json file which is in public folder from src ?
Thanks in advance :)